-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "smith-chart",
"version": "0.1.5",
"description": "Smith Chart React component",
"main": "index.js",
"unpkg": "build/smith.js",
"scripts": {
"test": "eslint index.js",
"build": "browserify src/app.js > build/app.js",
"start": "http-server -c5 build",
"browserify": "browserify --standalone smith index.js > build/smith.js",
"prepublish": "npm run test && mkdir -p build && npm run browserify"
},
"files": [
"build/smith.js",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drom/smith-chart.git"
},
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/drom/smith-chart/issues"
},
"homepage": "https://github.com/drom/smith-chart#readme",
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"@vx/responsive": "0.0.194",
"browserify": "^16.1.0",
"eslint": "^6.8.0",
"http-server": "^0.12.1",
"mocha": "^7.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}