-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 2.22 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
{
"name": "@z-brain/calc",
"description": "...",
"version": "0.0.20",
"repository": "git@github.com:z-brain/calc.git",
"author": "Anton Korniychuk <dev@korniychuk.pro>",
"license": "GPL-3.0",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"webpack_": "node --max_old_space_size=4096 node_modules/webpack/bin/webpack.js",
"build:dev": "rimraf dist && npm run webpack_ -- --config config/webpack/webpack.dev.js --progress --profile --trace-deprecation",
"build:prod": "rimraf dist && npm run webpack_ -- --config config/webpack/webpack.prod.js --progress --profile --bail",
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"test": "mochapack --include src/chai --webpack-config \"config/webpack/webpack.mocha.js\" \"src/**/*.spec.ts\"",
"test:watch": "npm run test -- --watch",
"publish_": "node ./publish-package.js",
"publish:dev": "ENV=dev npm run publish_",
"publish:prod": "ENV=prod npm run publish_",
"npm:version:last-pushed": "npm view . version",
"npm:version:from-package": "echo $npm_package_version",
"npm:version:update_": "PREV_VER=$npm_package_version && npm version $VERSION_PART_NAME -m \"Update package version:$VERSION_PART_NAME: $PREV_VER -> %s\" && git push --no-verify && git push --no-verify --tags",
"npm:version:update-major": "VERSION_PART_NAME=major npm run npm:version:update_",
"npm:version:update-minor": "VERSION_PART_NAME=minor npm run npm:version:update_",
"npm:version:update-patch": "VERSION_PART_NAME=patch npm run npm:version:update_"
},
"devDependencies": {
"@types/chai": "~4.1.7",
"@types/mocha": "~5.2.7",
"@types/node": "~12.0.4",
"@types/webpack": "~4.4.32",
"awesome-typescript-loader": "~5.2.1",
"chai": "~4.2.0",
"copy-webpack-plugin": "~5.0.3",
"mocha": "~6.1.4",
"mochapack": "~1.1.1",
"rimraf": "~2.6.3",
"ts-loader": "~6.0.4",
"tslint": "~5.17.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-eslint-rules": "~5.4.0",
"typescript": "~3.5.1",
"wallaby-webpack": "~3.9.15",
"webpack": "~4.32.2",
"webpack-cli": "~3.3.2",
"webpack-merge": "~4.2.1",
"webpack-node-externals": "~1.7.2"
}
}