-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
103 lines (103 loc) · 3.21 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "webpack-strip-log-loader",
"version": "0.1.11",
"description": "Remove log statements from any logging module",
"license": "MIT",
"repository": "https://github.com/bendtherules/webpack-strip-log-loader",
"author": {
"name": "bendtherules",
"email": "[email protected]",
"url": "https://github.com/bendtherules/webpack-strip-log-loader"
},
"keywords": [
"webpack",
"webpack-loader",
"webpack-strip-loader",
"strip",
"remove",
"log"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prebuild": "run-s clean format lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty && webpack",
"build-lib": "npm run prebuild && tsc --pretty",
"dev": "webpack-dev-server --progress --open-page dist/",
"demo": "npm run build && http-server dist -o",
"pretest": "npm run build-lib",
"test": "jest",
"test:loud": "cross-env NODE_ENV=debug npm run test",
"coverage": "npm run test -- --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"watch:test:loud": "cross-env NODE_ENV=debug npm run watch:test",
"watch:test-cov": "jest --watch --coverage",
"watch:test-cov:loud": "cross-env NODE_ENV=debug npm run watch:test-cov",
"list:test": "jest --listTests",
"version": "run-s test build && git add .",
"postversion": "git push --follow-tags",
"release-patch": "npm version patch && npm publish",
"release-minor": "npm version minor && npm publish",
"release-major": "npm version major && npm publish"
},
"dependencies": {
"array.prototype.flatmap": "^1.2.1",
"byots": "2.7.0-dev.20171209.9.18",
"loader-utils": "^1.1.0",
"loglevel": "^1.6.1",
"minimatch": "^3.0.4",
"tmp": "^0.0.33",
"typescript": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/loader-utils": "^1.1.3",
"@types/loglevel": "^1.5.3",
"@types/minimatch": "^3.0.3",
"@types/node": "^8.10.50",
"@types/tmp": "^0.0.33",
"@types/webpack": "^4.1.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.4.1",
"coveralls": "^2.0.0",
"cross-env": "^5.1.4",
"http-server": "^0.11.1",
"jest": "^22.0.4",
"jest-environment-node-debug": "^2.0.0",
"memory-fs": "^0.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"ts-jest": "^22.4.3",
"ts-loader": "^4.1.0",
"ts-node": "^3.2.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.1.0",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^2.11.1"
},
"engines": {
"node": ">=6.0.0 <10"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/(?!.*\\.ignore).*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}