-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 889 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 889 Bytes
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
{
"name": "@additive/schematics",
"version": "1.0.0",
"description": "Additive Angular schematic to create a module",
"keywords": [
"additive",
"angular",
"schematics",
"module"
],
"license": "MIT",
"author": "ADDITIVE GmbH",
"schematics": "./src/collection.json",
"scripts": {
"start": "npm run build -- --watch",
"build": "tsc -p tsconfig.json",
"clean": "del-cli src/*.{js,d.ts,map} src/**/*.{js,d.ts,map}",
"test": "tput reset && jasmine src/**/*_spec.js"
},
"dependencies": {
"@angular-devkit/core": "^10.0.3",
"@angular-devkit/schematics": "^10.0.3",
"@schematics/angular": "^10.0.3",
"prettier": "^2.0.5",
"typescript": "~3.9.2"
},
"devDependencies": {
"@types/jasmine": "~3.5.0",
"@types/node": "^12.12.50",
"@types/prettier": "^2.0.2",
"del-cli": "^3.0.1",
"jasmine": "^3.5.0"
}
}