-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
68 lines (68 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "testling",
"description": "write tests for browser code",
"version": "1.7.7",
"repository": {
"type": "git",
"url": "git://github.com/tape-testing/testling.git"
},
"browserify": "browser.js",
"bin": {
"testling": "bin/cmd.js"
},
"keywords": [
"test",
"browser",
"headless"
],
"scripts": {
"prebuild": "rimraf bundle",
"build": "mkdir -p bundle && browserify browser/prelude.js -o bundle/prelude.js",
"prepublishOnly": "safe-publish-latest && npm run build",
"prepublish": "not-in-publish || npm run prepublishOnly",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"dependencies": {
"@tapjs/tap-finished": "^0.0.3",
"bouncy": "^3.2.2",
"browser-launcher": "^1.0.2",
"browserify": "^3.46.1",
"concat-stream": "^1.6.2",
"cross-spawn": "^5.1.0",
"ecstatic": "^0.4.13",
"ent": "^0.0.8",
"glob": "^3.2.11",
"jsonify": "^0.0.1",
"object-inspect": "^1.13.2",
"optimist": "^0.6.1",
"resolve": "^2.0.0-next.5",
"shallow-copy": "^0.0.1",
"shell-quote": "^1.8.1",
"xhr-write-stream": "^0.1.2"
},
"devDependencies": {
"auto-changelog": "^2.5.0",
"encoding": "^0.1.13",
"in-publish": "^2.0.1",
"rimraf": "^3.0.2",
"safe-publish-latest": "^2.0.0",
"tape": "^5.9.0"
},
"engines": {
"node": ">=0.8"
},
"license": "MIT/X11",
"author": "Jordan Harband <[email protected]>",
"funding": {
"url": "https://github.com/sponsors/ljharb"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false,
"hideCredit": true
}
}