forked from rescribet/link-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.18 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
64
{
"name": "link-redux",
"version": "1.0.0-beta8",
"description": "React/Redux extensions for the Link library",
"main": "dist/link-redux.js",
"module": "dist/module/index.js",
"repository": "https://github.com/fletcher91/link-redux.git",
"scripts": {
"build": "webpack -p --optimize-minimize && babel --no-babelrc --presets react,es2015-native-modules,stage-0 -d dist/module/ src/ && babel --no-babelrc --presets react,es2015-native-modules,stage-0 -d dist/module/test test/",
"build:dev": "webpack",
"dev": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"lint": "eslint ./src ./test",
"prepublish": "npm run build",
"test": "mocha ./test/testhelper.js \"./src/**/*.test.js*\" --compilers js:babel-core/register"
},
"author": "Fletcher91 <[email protected]>",
"license": "LGPL-3.0",
"dependencies": {
"es6-promise": "^4.0.5",
"immutable": "^3.8.1",
"jsonld": "^0.4.11",
"link-lib": "^1.0.0-beta6",
"prop-types": "^15.6.0",
"rdflib": "^0.16.3",
"react": "^16.1.0",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-batched-actions": "^0.1.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-new-target": "^7.0.0-alpha.14",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^4.1.1",
"chai-enzyme": "1.0.0-beta.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"react-dom": "^16.1.0",
"react-test-renderer": "^16.1.0",
"redux-immutable": "^4.0.0",
"sinon": "^3.2.0",
"sinon-chai": "^2.13.0",
"webpack": "^3.5.4",
"whatwg-fetch": "^2.0.3",
"whatwg-url": "^6.3.0"
}
}