-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 776 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 776 Bytes
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
{
"name": "vue-set",
"version": "0.1.0",
"description": "A reactivity framework compatible version of lodash.set",
"main": "vue-set.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezracelli/vue-set.git"
},
"keywords": [],
"author": "Ezra Celli <ezra@hacari.net> (https://github.com/ezracelli)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ezracelli/vue-set/issues"
},
"homepage": "https://github.com/ezracelli/vue-set#readme",
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.6.0"
},
"jest": {
"transform": {
".*": "./node_modules/babel-jest"
},
"moduleFileExtensions": [
"js"
]
}
}