-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.09 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
{
"name": "@jsdevtools/simplifyify",
"version": "8.0.4",
"description": "A simplified Browserify and Watchify CLI",
"keywords": [
"browserify",
"browserify-plugin",
"watchify",
"cli",
"minify",
"uglify",
"uglifyify",
"sourcemap",
"source-map",
"source map",
"exorcist",
"istanbul"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"homepage": "https://jstools.dev/simplifyify",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/simplifyify.git"
},
"license": "MIT",
"main": "lib/index.js",
"bin": {
"simplifyify": "bin/simplifyify.js"
},
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "shx rm -rf .nyc_output coverage",
"lint": "eslint bin lib test/fixtures test/specs",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm test && npm run bump"
},
"dependencies": {
"@jsdevtools/browserify-banner": "^2.0.4",
"@jsdevtools/ono": "^7.1.3",
"browserify": "^17.0.0",
"browserify-istanbul": "^3.0.1",
"commander": "^6.2.1",
"exorcist": "^1.0.0",
"globby": "^11.0.1",
"mkdirp-promise": "^5.0.1",
"shx": "^0.3.3",
"tsify": "^5.0.2",
"uglify-es": "^3.3.7",
"uglifyify": "^5.0.2",
"watchify": "^3.11.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@jsdevtools/eslint-config": "^1.1.4",
"@jsdevtools/host-environment": "^2.1.2",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"mocha": "^8.2.1",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rmfr": "^2.0.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"typescript": "*"
}
}