forked from foxbenjaminfox/vue-async-computed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.53 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
66
67
68
69
70
71
72
73
74
75
{
"name": "vue-async-computed",
"version": "3.4.1",
"description": "Async computed properties for Vue",
"main": "dist/vue-async-computed.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --no-default-entries src/index.js",
"watch": "watch 'npm run build' src test",
"test": "babel-node --presets env test/index.js | tspec",
"prebuild": "npm run check -s && npm run clean -s && mkdirp dist",
"build": "npm run rollup -s && npm run babel -s",
"rollup": "rollup src/index.js --output.format umd --name AsyncComputed --output.file dist/vue-async-computed.esnext.js",
"babel": "babel --optional runtime dist/vue-async-computed.esnext.js --out-file dist/vue-async-computed.js",
"postbuild": "npm run test -s",
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublishOnly": "npm run build -s",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxbenjaminfox/vue-async-computed.git"
},
"keywords": [
"vue",
"data",
"async",
"computed",
"computed data"
],
"author": "Benjamin Fox <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/foxbenjaminfox/vue-async-computed/issues"
},
"homepage": "https://github.com/foxbenjaminfox/vue-async-computed#readme",
"peerDependencies": {
"vue": "~2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-istanbul": "^0.12.2",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"dependency-check": "^3.1.0",
"doctoc": "^1.3.1",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"estraverse-fb": "^1.3.2",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"rollup": "^0.63.4",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"vue": "^2.5.16",
"watch": "^1.0.2"
}
}