-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "react-visjs-timeline",
"version": "1.5.0",
"description": "React component for the vis.js timeline module",
"main": "build/index.js",
"scripts": {
"format": "prettier --write ./{src,examples}/**/*.js",
"release": "node_modules/.bin/babel src --ignore *.test.js --out-dir build",
"precommit": "lint-staged",
"prepublish": "npm run release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lighthouse-io/react-visjs-timeline.git"
},
"author": "willmcclellan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lighthouse-io/react-visjs-timeline/issues"
},
"homepage": "https://github.com/Lighthouse-io/react-visjs-timeline#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "1.11.1"
},
"dependencies": {
"lodash": "^4.17.4"
},
"peerDependencies": {
"prop-types": "^15.0 || ^16.0",
"react": "^0.14 || ^15.0 || ^16.0",
"react-dom": "^0.14 || ^15.0 || ^16.0",
"vis": "^4.20.1"
}
}