-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 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
{
"name": "byndyusoft-node-calc-cli",
"version": "1.0.0",
"description": "Test task for byndyusoft.com",
"main": "index.js",
"scripts": {
"test": "yarn test:syntax && yarn test:calculator",
"start": "node ./index.js",
"test:syntax": "yarn code:syntax -o source/syntax-expression.js && mocha source/test-syntax.js",
"test:calculator": "yarn code:calculator -o source/calculator.js && mocha source/test-calculator.js",
"code:calculator": "imbac -p source/calculator.imba | js-beautify -",
"code:syntax": "imbac -p source/syntax-expression.imba | js-beautify -",
"build:web": "webpack --mode production --bail -p --display errors-only",
"develop:web": "webpack-dev-server --port 9090 --mode development -d --devtool source-map --inline --content-base public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qwars/byndyusoft-node-calc-cli.git"
},
"keywords": [
"calculator"
],
"author": "Alexander Selunin <[email protected]>",
"bugs": {
"url": "https://github.com/qwars/byndyusoft-node-calc-cli/issues"
},
"homepage": "https://github.com/qwars/byndyusoft-node-calc-cli#readme",
"private": true,
"nodemonConfig": {
"restartable": "rs",
"exec": "node index.js",
"ignore": [
".git",
"node_modules/**/node_modules",
"*~"
],
"verbose": true,
"watch": [
"source",
"index.js"
],
"env": {
"NODE_ENV": "development"
},
"ext": "imba json"
},
"devDependencies": {
"autoprefixer": "^9.6.0",
"babel-minify": "^0.5.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"html-webpack-plugin": "^3.2.0",
"imba": "^1.4.2",
"js-beautify": "^1.10.2",
"mini-css-extract-plugin": "^0.7.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
}
}