-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "ng-lib-schematics",
"version": "0.3.0",
"description": "Angular schematics to easily create Angular libraries",
"repository": {
"type": "git",
"url": "https://github.com/caroso1222/ng-lib-schematics"
},
"scripts": {
"build": "gulp build",
"watch": "gulp",
"test": "npm run build && jasmine **/*_spec.js"
},
"keywords": [
"schematics"
],
"author": "Carlos Roso <ce.roso398@gmail.com>",
"private": true,
"license": "MIT",
"schematics": "./collection.json",
"dependencies": {
"@angular-devkit/core": "^0.0.25",
"@angular-devkit/schematics": "^0.0.48",
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.31",
"ng-schematics-utils": "1.0.0-beta.2",
"jasmine": "^2.8.0",
"typescript": "^2.5.2"
},
"devDependencies": {
"del": "^3.0.0",
"gulp-typescript": "^3.2.3",
"concurrently": "^3.5.1",
"gulp-json-editor": "^2.2.1",
"gulp": "^3.9.1",
"jasmine": "^2.8.0",
"gulp-tsc": "^1.3.2",
"gulp-watch": "^4.3.11",
"gulp-src-ordered-globs": "^1.0.3"
}
}