-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "bare-bundle-compile",
"version": "1.1.0",
"description": "Compile a bundle of CommonJS modules to a single module",
"exports": {
".": "./index.js",
"./package": "./package.json"
},
"files": [
"index.js"
],
"scripts": {
"test": "npm run lint && npm run test:bare && npm run test:node",
"test:bare": "bare test.js",
"test:node": "node test.js",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-bundle-compile.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-bundle-compile/issues"
},
"homepage": "https://github.com/holepunchto/bare-bundle-compile#readme",
"peerDependencies": {
"bare-bundle": "^1.8.0"
},
"devDependencies": {
"bare-bundle": "*",
"brittle": "^3.2.1",
"standard": "^17.0.0"
}
}