-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1007 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
31
32
33
34
35
36
37
38
39
40
{
"name": "@feeloor/ng-extension-schematics",
"version": "1.0.2",
"description": "Angular extension schematics",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*_spec.js",
"release": "np"
},
"private": false,
"keywords": [
"schematics",
"angular",
"angular-schematics",
"@feeloor"
],
"author": "Felix Khoi <felix@khoi.se>",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^0.7.1",
"@angular-devkit/schematics": "^0.7.1",
"@schematics/angular": "^0.7.1",
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.31",
"jasmine": "^2.8.0",
"typescript": "^2.5.2"
},
"repository": {
"type": "git",
"url": "https://github.com/feeloor/ng-extension-schematics.git"
},
"bugs": "https://github.com/feeloor/ng-extension-schematics/issues",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"np": "^3.0.4"
}
}