-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.45 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
65
66
67
68
69
{
"name": "regantt",
"version": "0.1.6",
"description": "A React Gantt Chart",
"repository": {
"type": "git",
"url": "git+https://github.com/alanleite/regantt.git"
},
"keywords": [
"react",
"gantt",
"chart"
],
"author": "Alan Leite",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanleite/regantt/issues"
},
"homepage": "https://github.com/alanleite/regantt#readme",
"main": "lib/regantt.js",
"files": [
"lib",
"src"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "NODE_ENV=production webpack",
"watch": "webpack --watch",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^24.7.1",
"react": "^16.11.0",
"standard": "^12.0.1",
"styled-components": "^4.4.0",
"webpack-cli": "^3.3.0",
"webpack-node-externals": "^1.7.2",
"webpack": "^4.30.0"
},
"peerDependencies": {
"react": ">= 16.11.0",
"styled-components": ">= 4.4.0"
},
"standard": {
"enabled": true,
"autoFixOnSave": true,
"envs": [
"jest"
],
"validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
}
],
"ignore": [
"node_modules/**"
]
}
}