-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.97 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
45
46
47
48
49
{
"name": "platform",
"version": "0.0.7",
"scripts": {
"ext:vscode:prepublish": "npm run ext:build",
"ext:build": "tsc -p ./extension",
"ext:watch": "tsc -watch -p ./extension",
"ext:test": "npm run ext:build && node ./extension/out/test/runTest.js",
"ext:package": "npm run ext:build && cd extension && vsce package -o ../dist/",
"ext:install": "npm run ext:package && cd dist && code --install-extension componizer-0.0.7.vsix",
"ext:lint": "tslint --project extension/tsconfig.json",
"sch:build": "tsc -p ./schematics/tsconfig.json",
"sch:build:static": "cpx ./schematics/**/{package.json,collection.json,schema.json,files/**} dist/sch",
"sch:build:watch": "tsc -p ./schematics/tsconfig.json --watch",
"sch:test": "mocha -r ts-node/register ./schematics/**/*.spec.ts",
"sch:test:watch": "mocha -r ts-node/register ./schematics/**/*.spec.ts -w --watch-files ./schematics/**/*.spec.ts",
"sch:package": "npm run sch:build && npm run sch:build:static",
"sch:install": "npm run sch:package && cd dist/sch && npm pack",
"sch:lint": "tslint --project schematics/tsconfig.json",
"lint": "npm run ext:lint && npm run sch:lint",
"test": "npm run ext:test && npm run sch:test",
"link:schematics:sample": "cd dist/sch && npm link && cd ./../../sample && npm link @componizer/schematics"
},
"dependencies": {
"@angular-devkit/core": "^9.1.12",
"@angular-devkit/schematics": "^9.1.12",
"@schematics/angular": "^9.1.12",
"ts-morph": "^8.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/glob": "^7.1.3",
"@types/jasmine": "^3.6.0",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.43",
"@types/sinon": "^9.0.8",
"@types/vscode": "^1.50.0",
"chai": "^4.2.0",
"cpx": "^1.5.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"sinon": "^9.2.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5",
"vsce": "^1.81.0",
"vscode-test": "^1.4.1"
}
}