forked from NativeScript/nativescript-schematics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@nativescript/schematics",
"version": "11.0.0",
"description": "Schematics for NativeScript Angular apps.",
"scripts": {
"clean": "npx rimraf node_modules package-lock.json && npm i",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"test": "npm run build && npm run jasmine",
"jasmine": "jasmine --config=jasmine-config/jasmine.json",
"prepare": "npm run build",
"debug": "node --debug-brk $(which ng) g command",
"debug-v8": "node --inspect-brk $(which ng) g command",
"debug-ng-new": "node --inspect-brk $(which ng) new -c=@nativescript/schematics projectName",
"version": "rm package-lock.json && npm run changelog && git add CHANGELOG.md",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "tslint --project ./tsconfig.json -c ./tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --project ./tsconfig.json -c ./tslint.json 'src/**/*.ts' --fix"
},
"ng-add": {
"save": "devDependencies"
},
"ng-new": {
"save": "devDependencies"
},
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "~11.0.0",
"@angular-devkit/schematics": "~11.0.0",
"@nativescript/tslint-rules": "~0.0.5",
"@phenomnomnominal/tsquery": "^4.1.0",
"strip-json-comments": "~3.1.1"
},
"devDependencies": {
"@angular/cli": "~11.0.0",
"@schematics/angular": "~11.0.0",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"conventional-changelog-cli": "^2.0.1",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"tslint": "~6.1.0",
"typescript": "~4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativescript/nativescript-schematics.git"
},
"bugs": {
"url": "https://github.com/nativescript/nativescript-schematics/issues"
},
"homepage": "https://github.com/nativescript/nativescript-schematics#readme",
"keywords": [
"schematics",
"NativeScript",
"Angular",
"code generation",
"blueprints"
],
"author": {
"name": "NativeScript Team"
},
"contributors": [
"Stanimira Vlaeva <[email protected]>",
"Sebastian Witalec <[email protected]>",
"Danny Koppenhagen <d-koppenhagen>",
"NativeScript Team <[email protected]>"
],
"license": "Apache-2.0"
}