-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.57 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.57 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@two-n/nn-component-library",
"version": "1.0.12",
"description": "Reusable components for data visualization produced by TWO-N",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "browserify -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] -t cssify src/main.jsx -o src/bundle.js",
"build": "rm -rf dist && babel src --out-dir dist --presets=@babel/preset-env,@babel/preset-react",
"scss": "node-sass \"src/*/*.scss\" -o \"src/*/\"",
"scss-dist-three": "node-sass \"src/nnThreeInOne/style.scss\" -o \"dist/nnThreeInOne/\"",
"scss-dist-line": "node-sass \"src/nnLineChart/style.scss\" -o \"dist/nnLineChart/\"",
"scss-dist-slide": "node-sass \"src/nnSlider/style.scss\" -o \"dist/nnSlider/\"",
"scss-dist-bar": "node-sass \"src/nnBarChart/style.scss\" -o \"dist/nnBarChart/\"",
"scss-src-three": "node-sass \"src/nnThreeInOne/style.scss\" -o \"src/nnThreeInOne/\"",
"scss-src-line": "node-sass \"src/nnLineChart/style.scss\" -o \"src/nnLineChart/\"",
"scss-src-bar": "node-sass \"src/nnBarChart/style.scss\" -o \"src/nnBarChart/\"",
"watch-js": "watchify -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] -t cssify src/main.jsx -d -o src/bundle.js",
"watch": "npm run watch-sass & npm run watch-js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/two-n/nn-component-library.git"
},
"keywords": [
"dataviz",
"react"
],
"author": "TWO-N, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/two-n/nn-component-library/issues"
},
"homepage": "https://github.com/two-n/nn-component-library#readme",
"dependencies": {
"d3-array": "^2.0.3",
"d3-axis": "^1.0.12",
"d3-drag": "^1.2.3",
"d3-hierarchy": "^1.1.8",
"d3-scale": "^2.1.2",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.3.2",
"d3-shape": "^1.2.2",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-transition-group": "^2.5.2"
},
"peerDependencies": {
"react": "^16.6.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"cssify": "^1.0.3",
"eslint": "^5.10.0",
"eslint-plugin-react": "^7.11.1",
"node-sass": "^4.11.0",
"react-dom": "^16.7.0",
"watchify": "^3.11.0"
}
}