-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "visualization",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"build-lib": "webpack --config webpack.config.lib.js && cp dist/lib/*.min.js demo/src/ && npm run docs",
"build-lib-test": "webpack --config webpack.config.lib.js",
"start:browser": "npm run build-lib && webpack-dev-server --config webpack.dev.js --open",
"start:node": "nodemon --exec babel-node demo/src/index.js",
"test": "npm run build-lib-test && cross-env NODE_ENV=test nyc mocha --require @babel/register --colors __tests__/**/**/*.spec.js",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"publish": "npm run build && cd dist/lib && npm publish --access public"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "1.0.2",
"babel-plugin-istanbul": "^5.1.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"clean-webpack-plugin": "^2.0.1",
"commitizen": "^3.1.1",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"csv-loader": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"docdash": "^1.1.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.1.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^6.1.4",
"nodemon": "^1.18.11",
"nyc": "^14.0.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"webpack-strip-log-loader": "^0.1.5",
"xml-loader": "^1.2.1"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"@iapps/function-analytics": "^1.0.0-beta.4",
"d2": "^31.7.0",
"lodash": "^4.17.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}