-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "model-graph",
"version": "0.2.5",
"description": "Normalized model graph management library",
"main": "dist/model-graph.js",
"module": "dist/model-graph.es.js",
"browser": "dist/model-graph.umd.js",
"scripts": {
"lint": "eslint src",
"test": "jest",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"build:prod": "NODE_ENV=production rollup -c",
"publish": "npm run lint && npm run build && npm run test && git push gitlab master --follow-tag"
},
"author": "Martin Caussanel",
"license": "ISC",
"dependencies": {
"normalizr": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/runtime": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^23.6.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify-es": "0.0.1",
"uglify-es": "^3.3.9"
}
}