-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 971 Bytes
/
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
{
"name": "vuex-ts-decorators",
"version": "0.0.7",
"description": "TypeScript decorators for working with Vuex",
"typings": "src/index.ts",
"main": "src/index.ts",
"scripts": {
"preversion": "npm test",
"postversion": "git push --tags && npm publish",
"test": "mocha -r source-map-support/register -r ts-node/register -r es6-promise/auto test/**/*.ts",
"start": "npm run test -- -w --watch-extensions ts"
},
"repository": "snaptopixel/vuex-ts-decorators",
"author": "Casey Corcoran <[email protected]> (http://snaptopixel.com)",
"license": "ISC",
"devDependencies": {
"@types/chai": "3.4.35",
"@types/mocha": "2.2.39",
"@types/sinon": "1.16.35",
"chai": "3.5.0",
"es6-promise": "4.0.5",
"mocha": "3.2.0",
"sinon": "1.17.7",
"source-map-support": "0.4.11",
"ts-node": "2.1.0",
"typescript": "2.2.1",
"vue": "2.2.1",
"vuex": "2.2.1"
},
"engines": {
"node": ">=6.0.0"
}
}