-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "@ngfk/store-monorepo",
"version": "0.0.13",
"description": "State management powered by RxJS, enforcing type safety",
"scripts": {
"bootstrap": "ts-node ./scripts/bootstrap.ts",
"build": "npm run clean && ts-node ./scripts/build.ts",
"test": "ts-node ./scripts/test.ts",
"test:store": "mocha --compilers ts:ts-node/register ./packages/store/test/**/*.spec.ts --watch",
"check": "npm run clean && ts-node ./scripts/check.ts",
"clean": "rimraf ./dist",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngfk/store.git"
},
"author": "Rick Koster <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngfk/store/issues"
},
"homepage": "https://github.com/ngfk/store#readme",
"devDependencies": {
"@angular/core": "^4.4.4",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.31",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"cz-customizable": "^5.2.0",
"mkdirp": "^0.5.1",
"mocha": "^3.5.3",
"rimraf": "^2.6.2",
"rxjs": "^5.4.3",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./config/cz-config.js"
}
}
}