-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "regrafx",
"version": "1.3.0",
"description": "Reactive Graph Flux",
"repository": {
"type": "git",
"url": "https://github.com/lp74/ReGraFX.git"
},
"main": "dist/regrafx.js",
"module": "src/regrafx.es6.js",
"scripts": {
"build-all": "rollup -c & rollup -c rollup.config.umd.rgfx.js",
"force": "git add . && git commit --amend && git push -f",
"lint": "eslint src/**/*.js spec/**/*.js examples/**/*.js --fix",
"test": "jest --coverage"
},
"jest": {
"automock": false,
"setupFiles": [
"./spec/setup.js"
]
},
"author": "Luca Polverini",
"license": "ISC",
"dependencies": {
"core-js": "^2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"eslint": "^5.9.0",
"fetch-mock": "^7.2.5",
"jest": "^24.1.0",
"jest-fetch-mock": "^2.1.0",
"node-fetch": "^2.3.0",
"npx": "^10.2.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript": "^1.0.0",
"tslib": "^1.9.3",
"typescript": "^3.2.1",
"whatwg-fetch": "^3.0.0"
}
}