-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 868 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
{
"name": "all-other-things-being-equal",
"version": "1.1.1",
"description": "Indispensable helpers for common test cases when building web apps.",
"main": "assertions.js",
"scripts": {
"test": "node ./test.js",
"browser": "browserify -s allOtherThingsBeingEqual assertions.js > ./dist/browser.js",
"prepublish": "npm run browser && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zetlen/all-other-things-being-equal.git"
},
"keywords": [
"test",
"networking"
],
"author": "James Zetlen",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/zetlen/all-other-things-being-equal/issues"
},
"homepage": "https://github.com/zetlen/all-other-things-being-equal#readme",
"devDependencies": {
"browserify": "^11.2.0",
"tape": "^4.2.1",
"tape-catch": "^1.0.4"
}
}