forked from NativeScript/nativescript-schematics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "@nativescript/schematics",
"version": "0.2.5",
"description": "Schematics for NativeScript Angular apps.",
"scripts": {
"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 && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "~0.7.0",
"@angular-devkit/schematics": "~0.7.0",
"@schematics/angular": "~0.7.0"
},
"devDependencies": {
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.31",
"conventional-changelog-cli": "^2.0.1",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"typescript": "2.7.2"
},
"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]>"
],
"license": "Apache-2.0"
}