-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.8 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
{
"name": "vue-deepset",
"version": "0.6.3",
"description": "Deep set Vue.js objects",
"main": "index.js",
"scripts": {
"lint": "eslint src/",
"build:node": "babel src --optional runtime --ignore __tests__ --out-file index.js",
"build:browser": "browserify index.js -s VueDeepSet > vue-deepset.js && uglifyjs vue-deepset.js > vue-deepset.min.js",
"build": "npm run lint && npm run build:node && npm run build:browser"
},
"browserify": {
"transform": [
"browserify-global-shim"
],
"standalone": "VueDeepSet"
},
"browserify-global-shim": {
"vue": "Vue"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhoriuchi/vue-deepset.git"
},
"keywords": [
"vue",
"vue.js",
"reactive",
"deep",
"set",
"vuex",
"model",
"v-model",
"binding",
"dynamic",
"nested",
"paths",
"path",
"store",
"form",
"mutation"
],
"author": "Branden Horiuchi <bhoriuchi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhoriuchi/vue-deepset/issues"
},
"homepage": "https://github.com/bhoriuchi/vue-deepset#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.23.1",
"babel-eslint": "^8.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-async-generators": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"browserify-global-shim": "^1.0.3",
"eslint": "^4.15.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"uglify-js": "^3.0.27"
}
}