-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.63 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"private": true,
"name": "pen-monorepo",
"version": "0.0.1",
"description": "PEN Compiler and Tools",
"license": "MIT",
"contributors": [
{
"name": "Troy Gerwien",
"email": "yortus@gmail.com",
"url": "http://github.com/yortus/"
}
],
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "tsc -b --verbose && lerna run postbuild --stream",
"clean": "lerna exec rimraf dist/ *.tsbuildinfo --stream && lerna run clean",
"rebuild": "npm run clean && npm run build",
"lint": "lerna exec tslint {src,tests}/**/*.ts --stream",
"test": "lerna run test --scope test-suite --stream",
"bench": "lerna run bench --scope test-suite --stream",
"publish": "lerna exec npm publish --scope penc --stream",
"parse-1mb": "node packages/test-suite/scripts/parse-1mb.js",
"parse-1mb-opt": "node --trace-opt packages/test-suite/scripts/parse-1mb.js",
"parse-1mb-deopt": "node --trace-deopt packages/test-suite/scripts/parse-1mb.js",
"parse-1mb-x": "node --trace-ic packages/test-suite/scripts/parse-1mb.js",
"vsce": "lerna run package --scope vscode-pen"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.16",
"chai": "^4.2.0",
"cpy-cli": "^2.0.0",
"heapdump": "^0.3.15",
"lerna": "^3.20.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"ts-node": "^8.4.1",
"tslint": "^5.19.0",
"typescript": "next"
}
}