This repository has been archived by the owner on Feb 9, 2018. It is now read-only.
forked from JS-DevTools/simplifyify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.71 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
{
"name": "simplifyify",
"version": "3.2.1",
"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": "http://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/simplifyify",
"main": "lib/index.js",
"bin": {
"simplifyify": "bin/simplifyify.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint bin lib test/fixtures test/specs --fix",
"test": "mocha && npm run lint",
"upgrade": "npm-check -u",
"bump": "bump --prompt --tag --push --all",
"release": "npm run upgrade && npm test && npm run bump && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/simplifyify.git"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.12.2",
"eslint-config-modular": "^2.0.1",
"mocha": "^3.2.0",
"npm-check": "^5.4.0",
"version-bump-prompt": "^3.0.0"
},
"dependencies": {
"browserify": "^13.3.0",
"browserify-banner": "^1.0.3",
"browserify-istanbul": "^2.0.0",
"commander": "^2.9.0",
"exorcist": "^0.4.0",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"minimatch": "^3.0.3",
"mkdirp": "^0.5.1",
"ono": "^2.2.1",
"through2": "^2.0.3",
"touch": "^1.0.0",
"uglify-js": "^2.7.5",
"uglifyify": "^3.0.4",
"watchify": "^3.8.0"
},
"engines": {
"node": ">=4"
}
}