-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 855 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
{
"name": "ngx-spec",
"version": "2.1.6",
"description": "A missing schematics for creating missing / recreating Angular 6+ specs",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/smnbbrv/ngx-spec.git"
},
"keywords": [
"angular",
"spec",
"cli",
"schematics"
],
"author": "smnbbrv",
"license": "MIT",
"schematics": "./src/collection.json",
"devDependencies": {
"@angular-devkit/core": "^7.3.3",
"@angular-devkit/schematics": "^7.3.3",
"@schematics/angular": "^7.3.3",
"@types/jasmine": "^2.8.16",
"@types/minimatch": "^3.0.3",
"@types/node": "^8.10.40",
"jasmine": "^3.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"minimatch": "^3.0.4"
}
}