-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 869 Bytes
/
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": "redbone",
"version": "3.0.0",
"description": "Polymorphic library for two way redux dispatching",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:ya-kostik/redbone.git"
},
"scripts": {
"test": "jest --verbose",
"watch": "jest --watch",
"eslint": "./node_modules/eslint/bin/eslint.js ./",
"build": "./node_modules/webpack/bin/webpack.js"
},
"pre-commit": [
"eslint"
],
"author": "Constantin T.",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"cucumber": "^3.0.0",
"eslint": "^4.2.0",
"jest": "^22.4.3",
"pre-commit": "^1.2.2",
"socket.io": "^2.0.3",
"webpack": "^2.4.1"
}
}