-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "@ngxs/cli",
"version": "1.0.0",
"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d",
"author": "Maxim Ivanov",
"repository": {
"type": "git",
"url": "git+https://github.com/ngxs/cli.git"
},
"keywords": [
"ngxs",
"cli",
"angular",
"angular2",
"state-management"
],
"scripts": {
"prepublishOnly": "tsc -p tsconfig.json && cp -R src/plop-helpers lib/src/plop-helpers",
"// - Binaries": "Run against node_modules/.bin",
"tsc": "tsc",
"plop": "plop",
"ts-node": "ts-node",
"node-plop": "node-plop",
"// - APPS": "Run Apps in dev and with packaged modules",
"start": "ts-node index",
"// - TESTING": "Test all modules",
"test": "ts-mocha --paths -p ./tsconfig.json tests/*.spec.ts",
"// - UTILS": "Utility Scripts",
"lint": "tslint --exclude 'node_modules/**/*.ts' -c tslint.json '**/*.ts'",
"format": "prettier --write '**/*.{ts,js}'"
},
"bin": {
"ngxs": "./bin/ngxs.js"
},
"sideEffects": true,
"dependencies": {
"colors": "^1.3.1",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"inquirer-directory": "^2.1.0",
"node-plop": "0.15.0",
"plop": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/expect": "1.20.3",
"@types/mocha": "5.0.0",
"@types/node": "^10.5.6",
"chai": "^4.1.2",
"expect": "22.4.3",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-mocha": "^1.3.0",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.5.0",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "2.7.1"
}
}