-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "semiotic-mark",
"version": "0.5.0",
"description": "Smart data visualization marks for React",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"lint": "eslint src/components",
"prebuild": "babel src/components --out-dir lib --ignore test.js",
"create-release-branch": "sh ./scripts/create-release-branch",
"publish-release": "sh ./scripts/publish-release",
"deploy-docs": "sh ./scripts/docs",
"ci-deploy-docs": "sh ./scripts/docs-ci",
"gh-pages": "REACT_APP_GH_PAGES_PATH='semiotic-mark' npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/emeeks/semiotic-mark.git"
},
"author": {
"name": "Elijah Meeks",
"email": "[email protected]"
},
"contributors": [
"Susie Lu <[email protected]>"
],
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "6.4.5",
"babel-preset-netflix-dea": "^3.0.1",
"babel-register": "^6.7.2",
"conventional-changelog-cli": "1.1.1",
"conventional-recommended-bump": "0.3.0",
"d3-interpolate": "^1.3.2",
"d3-shape": "^1.3.5",
"dentist": "1.0.3",
"enzyme": "3.1.0",
"enzyme-adapter-react-16": "1.0.1",
"eslint-plugin-react": "^7.3.0",
"history": "4.2.0",
"jsdom": "8.1.0",
"less": "2.7.1",
"material-design-icons-svg": "1.1.2",
"material-ui": "v1.0.0-beta.13",
"material-ui-icons": "1.0.0-beta.15",
"nyc": "5.5.0",
"react": "^16.0.0",
"react-dimensions": "git://github.com/AlesJiranek/react-dimensions",
"react-dom": "^16.0.0",
"react-element-to-jsx-string": "^12.0.0",
"react-prism": "4.3.1",
"react-router": "^4.0.0-beta.6",
"react-router-dom": "4.2.2",
"react-scripts": "2",
"react-test-renderer": "16.0.0",
"reactstrap": "git://github.com/jameswomack/reactstrap#react-popper_react-dom-16",
"roughjs": "^3.1.0",
"tap-difflet": "0.4.0",
"tap-notify": "1.0.0",
"tape": "4.4.0"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"dependencies": {
"d3-selection": "2",
"d3-transition": "2"
},
"nyc": {
"exclude": [
"tests/unit/lib/*.js",
"tests/unit/specs/**/*.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}