-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "@jsdevtools/sourcemapify",
"version": "2.0.2",
"description": "Source Map plugin for Browserify",
"keywords": [
"browserify",
"browserify-plugin",
"sourcemap",
"source-map",
"source map"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"homepage": "https://jstools.dev/sourcemapify",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/sourcemapify.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage",
"lint": "eslint 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"
},
"devDependencies": {
"@jsdevtools/eslint-config": "^1.0.4",
"@jsdevtools/version-bump-prompt": "^6.0.5",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"del": "^5.1.0",
"eslint": "^7.5.0",
"exorcist": "^1.0.0",
"mocha": "^8.0.1",
"npm-check": "^5.9.2",
"npm-check-updates": "^7.0.2",
"nyc": "^15.1.0",
"shx": "^0.3.2"
},
"dependencies": {
"through": "^2.3.8"
},
"engines": {
"node": ">=10"
}
}