-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "js-cleanup",
"version": "1.2.0",
"description": "Smart comment and whitespace cleaner for JavaScript-like files.",
"main": "./index.js",
"module": "./esm/index.mjs",
"source": "./src/index.ts",
"files": [
"index.*",
"esm"
],
"engines": {
"node": "^10.14.2 || >=12.0.0"
},
"scripts": {
"lint": "eslint -f unix --ext js,ts src test",
"test": "nyc mocha",
"pretest": "yarn build",
"build": "rollup -c && node ./finish",
"clean": "rimraf ./.nyc_output/** ./coverage/** ./esm/** index.js*",
"coverage": "nyc report -r=lcov",
"prepare": "yarn clean && yarn lint && yarn test"
},
"keywords": [
"javascript",
"typescript",
"es6",
"clean",
"cleanup",
"source",
"comments",
"remover",
"removal"
],
"author": "aMarCruz <amarcruzbox-git@yahoo.com>",
"license": "MIT",
"homepage": "https://github.com/aMarCruz/js-cleanup",
"bugs": "https://github.com/aMarCruz/js-cleanup/issues",
"repository": {
"url": "https://github.com/aMarCruz/js-cleanup",
"type": "git"
},
"dependencies": {
"magic-string": "^0.25.7",
"perf-regexes": "^1.0.1",
"skip-regex": "^1.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "~9.0.0",
"@types/expect": "~1.20.03",
"@types/mocha": "~8.0.3",
"@types/node": "~14.11.2",
"@typescript-eslint/eslint-plugin": "~4.2.0",
"@typescript-eslint/parser": "~4.2.0",
"@wessberg/rollup-plugin-ts": "~1.3.4",
"eslint": "~7.9.0",
"eslint-config-standardize": "^0.7.1",
"eslint-plugin-prettierx": "~0.14.0",
"expect": "~1.20.2",
"mocha": "~8.1.3",
"nyc": "~15.1.0",
"prettier": "github:aMarCruz/prettier#2.0.5",
"rimraf": "~3.0.2",
"rollup": "~2.28.1",
"sourcemap-validator": "~2.1.0",
"tslib": "^2.0.1",
"typescript": "~4.0.3"
}
}