-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "vue-ts-decorate",
"version": "1.2.0",
"description": "A set of TypeScript decorators for make the work with Vue.js easiest.",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/InDIOS/vue-ts-decorate.git"
},
"peerDependencies": {
"vue": "*"
},
"typings": "types/index.d.ts",
"scripts": {
"compile": "tsc -p .",
"test:start": "karma start",
"test:watch": "concurrently --kill-others \"npm run compile -- -w\" \"npm run test:start -- --no-single-run --auto-watch\"",
"test": "npm run compile && npm run test:start"
},
"author": "InDIOS",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.52",
"browserify": "^13.1.1",
"concurrently": "^3.1.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"typescript": "^2.3.2",
"vue": "^2.3.4",
"watchify": "^3.7.0"
}
}