-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.2 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
{
"name": "js-calculator",
"version": "1.0.0-SNAPSHOT",
"description": "ES6 Calculator",
"private": true,
"directories": {
"src": "src",
"test": "test",
"dist": "dist",
"example": "example"
},
"files": [
"dist/",
"src/"
],
"scripts": {
"changelog": "conventional-changelog -p js-calculator -i CHANGELOG.md -s",
"init": "shx mkdir -p ./dist",
"clean": "shx rm -rf ./dist",
"prebuild": "echo \"Project build started...\" && npm run clean && npm run init",
"lint": "npm run lint:js",
"lint:js": "eslint src test",
"test": "mocha --recursive ./test/unit/ --require @babel/register --color",
"build": "npm run lint && npm test && npm run build:main && npm run build:min",
"build:main": "webpack --aot --config ./build_config/webpack.prod.js",
"build:min": "webpack --aot --config ./build_config/webpack.prod.min.js",
"version": "is-prerelease || npm run changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuraldincer/js-calculator.git"
},
"keywords": [
"es6",
"javascript"
],
"author": "Vural Dinçer",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/vuraldincer/js-calculator/issues"
},
"homepage": "https://github.com/vuraldincer/js-calculator#readme",
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"core-js": "^3.6.5"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/parser": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"mocha": "^8.0.1",
"shx": "^0.3.2",
"terser-webpack-plugin": "^3.0.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.0.9"
}
}