-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.79 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "json-server-schematics",
"version": "2.0.0",
"description": "Angular schematics for adding json-server to an Angular workspace",
"homepage": "https://github.com/bniedermeyer/json-server-schematics#readme",
"repository": {
"type": "git",
"url": "https://github.com/bniedermeyer/json-server-schematics"
},
"bugs": "https://github.com/bniedermeyer/json-server-schematics/issues",
"scripts": {
"build": "tsc -p tsconfig.json",
"test:unit": "npm run build && jasmine src/**/*_spec.js",
"setup": "husky install && npm run link:schematic",
"test": "npm run sandbox:ng-add && npm run test:sandbox",
"clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox",
"link:schematic": "npm link && cd sandbox && npm link json-server-schematics",
"sandbox:ng-add": "npm run build && npm run link:schematic && cd sandbox && ng g json-server-schematics:ng-add",
"test:sandbox": "cd sandbox && npm run build"
},
"keywords": [
"schematics",
"json-server"
],
"files": [
"src"
],
"author": "Brenden Niedermeyer<contact@brenden.dev>",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^12.2.2",
"@angular-devkit/schematics": "^12.2.2",
"schematics-utilities": "^1.1.3",
"typescript": "~4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jasmine": "~3.8.0",
"@types/node": "^12.11.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.0",
"jasmine": "^3.5.0",
"semantic-release": "^17.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}