-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.09 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
55
56
57
58
59
60
{
"name": "@valueadd/schematics",
"version": "3.2.0",
"description": "ValueAdd schematics",
"scripts": {
"build": "tsc -p tsconfig.json",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "./node_modules/.bin/tslint --project tsconfig.json",
"test": "npm run build && node jasmine.js",
"test:debug": "npm run build && node --inspect-brk=0.0.0.0 jasmine.js",
"test:cov": "istanbul cover --include-all-sources --root ./src jasmine.js && istanbul check-coverage",
"watch": "./node_modules/.bin/nodemon --watch src --ext ts,json --ignore *.d.ts --exec 'npm run test'",
"validate": "node ./tools/tasks/validate-commit-message.js",
"release:prepare": "git checkout master && git pull --tags origin master && ./node_modules/.bin/standard-version && npm run build",
"release:publish": "git push --follow-tags origin master --no-verify && npm publish --access public --tag latest"
},
"keywords": [
"schematics"
],
"author": "",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^12.0.1",
"@angular-devkit/schematics": "^12.0.1",
"@nrwl/angular": "^12.3.4",
"@nrwl/workspace": "^12.3.4",
"@schematics/angular": "^12.0.1",
"app-root-path": "^2.2.1",
"fs-extra": "^8.1.0",
"import": "0.0.6",
"inquirer": "^6.5.0",
"typescript": "^4.2.4"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/fs-extra": "^8.0.0",
"@types/inquirer": "^6.5.0",
"@types/jasmine": "^3.3.16",
"@types/node": "^12.6.9",
"@types/prettier": "^1.18.1",
"coveralls": "^3.0.5",
"husky": "^3.0.2",
"istanbul": "^0.4.5",
"jasmine": "^3.4.0",
"jasmine-console-reporter": "^3.1.0",
"jasmine-node": "^3.0.0",
"jasmine-supertest": "^1.0.0",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1",
"prettier": "^2.0.4",
"semver": "^6.3.0",
"shelljs": "^0.8.3",
"standard-version": "^7.0.0",
"supertest": "^4.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0"
}
}