-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.6 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
{
"name": "vuex-typescript",
"version": "3.0.2",
"description": "A simple way to get static typing, static code analysis and intellisense with Vuex library.",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "istrib",
"license": "MIT",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/chai-http": "^0.0.30",
"@types/mocha": "^2.2.44",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"mocha": "^4.0.1",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"tslint": "^4.5.1",
"typescript": "^2.6.1",
"vue": "^2.5.3",
"vuex": "^3.0.1"
},
"peerDependencies": {
"vuex": "3.x"
},
"scripts": {
"clean": "rimraf dist && rimraf coverage",
"lint-force": "tslint --force --format verbose \"src/**/*.ts\"",
"lint": "tslint --format verbose \"src/**/*.ts\"",
"compile": "echo Using TypeScript && tsc --version && tsc --pretty",
"compile-watch": "npm run compile -- --watch",
"build": "npm run clean && npm run lint-force && npm run compile",
"build-watch": "npm run clean && npm run lint-force && npm run compile-watch",
"test": "npm run coverage",
"test-only": "mocha --recursive dist/**/*.spec.js",
"test-watch": "npm run test-only -- --watch",
"test-debug": "mocha --debug-brk --debug=0.0.0.0:5858 dist/**/*.spec.js",
"coverage": "rimraf coverage && nyc --reporter=html --reporter=text --reporter=lcov -x **/*.spec.js npm run test-only",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
}
}