-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "immutability-helper-x",
"version": "1.0.5",
"description": "expand the immutability-helper, to support update by path string, like the get/set in lodash",
"main": "lib/index.js",
"keywords": [
"react",
"immutable"
],
"scripts": {
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"clean": "rimraf lib dist",
"build": "npm run build:commonjs",
"prepublish": "npm run clean && npm run build",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"webpack": "^2.5.1"
},
"dependencies": {
"immutability-helper": "^2.2.2"
},
"files": [
"lib",
"src"
],
"jest": {
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.js?$": "babel-jest"
}
}
}