forked from MichaelWashburnJr/react-visjs-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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": "@nexbit/react-visjs-timeline",
"version": "1.5.1",
"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",
"prepare": "npm run release",
"build": "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/nexbit/react-visjs-timeline.git"
},
"author": "Paolo Furini <npx@nexbit.it>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nexbit/react-visjs-timeline/issues"
},
"homepage": "https://github.com/nexbit/react-visjs-timeline#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^5.15.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "1.16.4"
},
"dependencies": {
"lodash": "^4.17.11"
},
"peerDependencies": {
"prop-types": "^15.0",
"react": "^16.0",
"react-dom": "^16.0",
"vis": "^4.0"
},
"publishConfig": {
"access": "public"
}
}