-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "parser_base",
"version": "0.0.0",
"description": "A demonstrative parser with a webpage user interface.",
"author": "Raku Zeta <zetaraku@gmail.com>",
"license": "MIT",
"//devDependencies": {
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0"
},
"devDependencies": {
"ajv": "^6.5.2",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.6",
"css-loader": "^2.0.0",
"file-loader": "^4.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"pug": ">=3.0.1",
"pug-html-loader": "^1.1.5",
"raw-loader": "^4.0.2",
"sass": "^1.77.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.10"
},
"scripts": {
"test": "nyc --reporter=lcov mocha --require babel-core/register",
"localtest": "nyc --reporter=html --reporter=text mocha --require babel-core/register --colors",
"wp": "webpack --config webpack.config.js --progress --colors",
"wp-devs": "webpack-dev-server --devtool eval --colors --open --watch-content-base"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"canvg-browser": "^1.0.0",
"jquery": "^3.3.1",
"viz.js": "^2.1.2-pre.1"
},
"bugs": {
"url": "https://github.com/zetaraku/ParserBase/issues"
},
"homepage": "https://github.com/zetaraku/ParserBase#readme",
"private": true
}