-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
77 lines (77 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ng-metadata",
"version": "4.0.1",
"description": "Angular 2 decorators and utils for Angular 1.x",
"scripts": {
"prepublish": "tsc",
"start": "tsc -w",
"test": "mocha ./test/index.ts --require ts-node/register --colors --watch-extensions ts",
"test:watch": "npm run test -- --watch",
"commit": "git-cz",
"playground": "concurrently --kill-others \"tsc -p playground -w\" \"live-server --no-browser\"",
"uglify": "uglifyjs test/host.spec.js --beautify --mangle --compress --output test/__uglifyTest.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"bump": "conventional-recommended-bump -p angular -v",
"release": "scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngParty/ng-metadata.git"
},
"keywords": [
"angularjs",
"typescript",
"decorators"
],
"author": "Martin Hochel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngParty/ng-metadata/issues"
},
"homepage": "https://github.com/ngParty/ng-metadata#readme",
"devDependencies": {
"@angular/core": "2.4.1",
"@types/angular": "1.5.19",
"@types/chai": "3.4.34",
"@types/jquery": "2.0.34",
"@types/mocha": "2.2.32",
"@types/node": "6.0.46",
"@types/sinon": "1.16.31",
"angular": "1.4.10",
"chai": "3.5.0",
"commitizen": "2.4.6",
"concurrently": "2.1.0",
"conventional-changelog": "1.1.0",
"conventional-recommended-bump": "0.2.1",
"cz-conventional-changelog": "1.1.4",
"ghooks": "1.0.1",
"live-server": "0.8.2",
"mocha": "3.1.2",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.1",
"sinon": "1.17.6",
"systemjs": "0.19.6",
"ts-node": "1.7.0",
"typescript": "2.1.4",
"validate-commit-msg": "2.0.0",
"zone.js": "^0.7.2"
},
"peerDependencies": {
"rxjs": "^5.0.1",
"angular": ">=1.4.x"
},
"dependencies": {},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "tsc && npm test",
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"warnOnFail": true,
"maxSubjectLength": 120
}
}
}