forked from JS-DevTools/sourcemapify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.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
{
"name": "sourcemapify",
"version": "1.0.0",
"description": "SourceMap plugin for Browserify",
"keywords": [
"browserify",
"browserify-plugin",
"sourcemap",
"source-map",
"source map"
],
"author": {
"name": "James Messinger",
"url": "https://github.com/BigstickCarpet"
},
"license": "MIT",
"homepage": "https://github.com/BigstickCarpet/sourcemapify",
"main": "lib/index.js",
"scripts": {
"test-cli": "browserify test/lib/index.js -p [ sourcemapify --root \"../../\" ] --debug -o test/www/js/bundle.js",
"test-api": "node test/api.js",
"test-default": "browserify test/lib/index.js --debug -o test/www/js/bundle.js",
"build": "jshint . --verbose && jscs . --verbose",
"upgrade": "npm-check-updates -u && npm update",
"release": "npm run upgrade && npm run build && npm test && bump --prompt --tag --push --all && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/BigstickCarpet/sourcemapify.git"
},
"devDependencies": {
"browserify": "^10.2.4",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"npm-check-updates": "^1.5.1",
"version-bump-prompt": "^1.3.1"
},
"dependencies": {
"through": "^2.3.7"
}
}