-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 957 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "spectypes-benchmark",
"version": "2.1.11",
"license": "MIT",
"private": true,
"scripts": {
"type-check": "tsc -p ./src --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "rm -rf ./build && npm run build:js",
"build:js": "babel src --out-dir build --extensions \".ts,.tsx\"",
"bench": "node ./build/index.js",
"start": "npm run type-check && npm run build && npm run bench",
"report": "rm -rf ./README.md && npm run bench >> ./README.md"
},
"dependencies": {
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"benchmark": "^2.1.4",
"spectypes": "file:packages/spectypes",
"ts-railway": "^6.1.1"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/benchmark": "^2.1.1",
"babel-plugin-spectypes": "file:packages/babel-plugin-spectypes"
}
}