-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 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
{
"name": "@wdjunaidi/composite-tree-reducer",
"version": "0.1.1",
"description": "Simple utility to create composite tree reducer.",
"main": "dist/compositeTreeReducer.umd.js",
"repository": "https://github.com/wdjunaidi/composite-tree-reducer.git",
"bugs": {
"url": "https://github.com/wdjunaidi/composite-tree-reducer/issues"
},
"keywords": [
"reducer",
"composite",
"tree"
],
"author": "Wirianto Djunaidi <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"build": "npm run build:cjs && npm run build:umd",
"build:cjs": "babel src --presets babel-preset-es2015 --out-file dist/compositeTreeReducer.cjs.js",
"build:umd": "babel src --presets babel-preset-es2015 --plugins transform-es2015-modules-umd --out-file dist/compositeTreeReducer.umd.js",
"prepublish": "npm run build"
},
"dependencies": {
"lodash": "^4.17.4",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"jest": "^21.2.1"
}
}