-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "@skycatch/model-trainer-image-marker",
"version": "2.0.2",
"description": "Reusuable module for easy visual machine learning context training",
"main": "index.js",
"webpack": "index.js",
"browser": {
"index.js": "./dist/bundle.js"
},
"module": "src",
"scripts": {
"dev": "cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --config webpack.config.js --open",
"test": "cross-env NODE_ENV=testing ./node_modules/.bin/mocha --compilers js:babel-core/register",
"build": "npm run bundle",
"bundle": "cross-env NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js"
},
"author": "Skycatch Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Skycatch/model-trainer-image-marker.git"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/polyfill": "7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/register": "^7.0.0-beta.47",
"babel-loader": "^8.0.0-beta.3",
"chai": "^4.1.2",
"cross-env": "^5.1.0",
"css-loader": "^0.28.7",
"eslint-config-hapi": "^11.1.0",
"eslint-plugin-hapi": "^4.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.1",
"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.10.3",
"webpack": "^4.8.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.x",
"webpack-dev-server": "^3.1.0"
},
"keywords": [
"d3",
"babel",
"hmr",
"hot-module-replacement",
"es6",
"sass",
"library",
"workflow",
"webpack"
],
"dependencies": {
"d3-axis": "^1.0.8",
"d3-scale": "^2.0.0",
"d3-selection": "^1.3.0",
"d3-transform": "^1.0.5",
"d3-transition": "^1.1.1",
"d3-zoom": "^1.7.1",
"normalize.css": "^8.0.0"
}
}