-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.85 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": "@skycatch/photoset-grapher",
"version": "1.0.6",
"description": "Reusuable module for quick plotting of 3d coordinates into an interactible graph coordinate system",
"main": "index.js",
"webpack": "index.js",
"browser": {
"index.js": "./dist/bundle.js"
},
"module": "src",
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --config webpack.config.js",
"test": "NODE_ENV=testing ./node_modules/.bin/mocha --compilers js:babel-core/register",
"build": "npm run bundle",
"bundle": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js"
},
"author": "Skycatch Inc.",
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"es6-promise": "^4.1.1",
"eslint": "^4.6.0",
"eslint-config-hapi": "^10.1.0",
"eslint-plugin-hapi": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^3.1.1",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.2.0",
"stylelint-selector-bem-pattern": "^1.1.1",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.1"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"d3",
"babel",
"hmr",
"hot-module-replacement",
"es6",
"sass",
"library",
"workflow",
"webpack"
],
"dependencies": {
"d3-3d": "0.0.7",
"d3-array": "^1.2.1",
"d3-color": "^1.0.3",
"d3-drag": "^1.2.1",
"d3-scale": "^1.0.7",
"d3-selection": "^1.2.0",
"d3-transition": "^1.1.1"
}
}