-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
74 lines (74 loc) · 2.55 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
{
"name": "vue-async-computed",
"version": "4.0.1",
"description": "Async computed properties for Vue",
"main": "dist/vue-async-computed.js",
"module": "dist/vue-async-computed.esm.js",
"types": "types/index.d.ts",
"files": [
"bin/",
"dist/",
"types/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"watch": "watch 'npm run build' src test",
"test": "vitest run",
"prebuild": "npm run lint -s",
"build": "npm run buildOnly",
"buildOnly": "npm run clean -s && mkdirp dist && npm run rollup -s && npm run babel -s",
"rollup-esm": "rollup src/index.js --output.format esm --name AsyncComputed --output.file dist/vue-async-computed.esm.esnext.js",
"rollup-umd": "rollup src/index.js --output.format umd --name AsyncComputed --output.file dist/vue-async-computed.esnext.js",
"rollup": "npm run rollup-umd -s && npm run rollup-esm -s",
"babel-umd": "babel --optional runtime dist/vue-async-computed.esnext.js --out-file dist/vue-async-computed.js",
"babel-esm": "babel --optional runtime dist/vue-async-computed.esm.esnext.js --out-file dist/vue-async-computed.esm.js",
"babel": "npm run babel-umd -s && npm run babel-esm -s",
"postbuild": "npm run test -s",
"prepublishOnly": "npm run build -s",
"version": "node scripts/version.js",
"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": "~3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"doctoc": "^1.4.0",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"happy-dom": "^12.10.3",
"mkdirp": "^3.0.1",
"rimraf": "^5.0.5",
"rollup": "^2.26.3",
"vitest": "^0.34.6",
"vue": "^3.3.7",
"watch": "^1.0.2"
}
}