-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.36 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
{
"private": true,
"name": "node-browser-shim-gap",
"version": "1.0.0",
"description": " The gap issue between Node.js and Browser shims. ",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"clean": "rimraf test/build && mkdirp test/build",
"build:browserify": "npm run clean && browserify test/test.js -o test/build/browserify-test.js",
"build:webpack": "npm run clean && webpack test/test.js -o test/build/webpack-test.js --mode development",
"test": "npm run test:node; npm run test:webpack; npm run test:browserify",
"test:node": "mocha test/test.js",
"test:browserify": "npm run build:browserify && mocha-chrome test/browserify-test.html",
"test:webpack": "npm run build:webpack && mocha-chrome test/webpack-test.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azu/node-browser-shim-gap.git"
},
"keywords": [
"node",
"browser",
"shim",
"webpack",
"browserify"
],
"author": "azu",
"license": "MIT",
"bugs": {
"url": "https://github.com/azu/node-browser-shim-gap/issues"
},
"homepage": "https://github.com/azu/node-browser-shim-gap#readme",
"devDependencies": {
"browserify": "^16.2.0",
"mkdirp": "^0.5.1",
"mocha": "^5.1.1",
"mocha-chrome": "^1.1.0",
"rimraf": "^2.6.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}