-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "strip-javascript-comments",
"version": "1.1.11",
"description": "a very small, fast(ish) module to strip (i.e. remove) comments from javascript code",
"main": "index.mjs",
"module": "index.mjs",
"es:next": "index.mjs",
"unpkg": "lib/amd/es5/index.min.js",
"scripts": {
"test-cjs": "node test-cases/run.cjs",
"test-es6": "node --experimental-modules test-cases/run.es6",
"test": "npm run test-cjs && npm run test-es6",
"build": "rm -rf lib && webpack --config webpack.config.js",
"pub": "npm run build && git add . && git commit -m 'working code' && npm version patch -m 'upgrade to %s while working code' && git push && npm publish"
},
"author": "Frederic Rudman",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/frudman/strip-javascript-comments.git"
},
"keywords": [
"javascript",
"code",
"comment",
"comments",
"pre-processing",
"post-processing",
"delete",
"remove",
"strip",
"clean"
],
"bugs": {
"url": "https://github.com/frudman/strip-javascript-comments/issues"
},
"homepage": "https://github.com/frudman/strip-javascript-comments#readme",
"devDependencies": {
"terser-webpack-plugin": "^1.2.1",
"tidbits": "^1.0.15",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
}
}