-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "vue-async-computed-decorator",
"version": "0.0.5",
"description": "A vue-class-component decorator for vue-async-computed",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"check": "npm run build && npm run lint -s && npm run test -s",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm run -s check",
"test": "npm run build && parcel build test/index.js --out-dir test/dist && node test/dist/index.js | tspec"
},
"author": "Benjamin Fox <[email protected]>",
"license": "MIT",
"dependencies": {
"vue-async-computed": "^3.8.3",
"vue-class-component": "^7.2.5"
},
"bugs": {
"url": "https://github.com/foxbenjaminfox/vue-async-computed-decorator/issues"
},
"homepage": "https://github.com/foxbenjaminfox/vue-async-computed-decorator#readme",
"keywords": [
"vue",
"data",
"async",
"computed",
"computed data",
"decorator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/foxbenjaminfox/vue-async-computed-decorator.git"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"parcel": "^1.12.4",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"vue": "^2.6.11"
},
"peerDependencies": {
"vue": "~2"
}
}