-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 882 Bytes
/
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
{
"name": "with-mutations",
"version": "1.0.1",
"description": "a lightweight function for treating simple javascript variables as immutable",
"keywords": [
"javascript",
"mutation",
"immutable"
],
"repository": "/jharris4/with-mutations",
"license": "MIT",
"author": "jharris4",
"main": "lib/index.js",
"jsnext:main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src/ --out-dir lib",
"test": "jest"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"testMatch": [
"<rootDir>/test/*.js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.0.2",
"regenerator-runtime": "^0.11.0",
"rimraf": "^2.6.1"
}
}