forked from danguilherme/ng-cli-pug-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 781 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
{
"name": "@nemus/ng-cli-pug-loader",
"version": "0.2.2",
"description": "An schematic to add support for .pug files on Angular projects",
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"prepublish": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*_spec.js"
},
"keywords": [
"schematics"
],
"author": "",
"license": "MIT",
"schematics": "./src/schematics/collection.json",
"dependencies": {
"@angular-devkit/core": "^0.5.13",
"@angular-devkit/schematics": "^0.5.13"
},
"devDependencies": {
"@schematics/angular": "^0.5.13",
"@types/jasmine": "^2.6.0",
"@types/node": "^8.0.31",
"jasmine": "^2.8.0",
"typescript": "^2.5.2"
},
"scope": "@nemus"
}