-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "@extendscript/tap-es",
"version": "1.1.5",
"description": "ExtendScript TAP runner and reporter",
"main": "tap-es.js",
"scripts": {
"buildEnv": "curl https://raw.githubusercontent.com/ES-Collection/build-node-venv/master/build-node-venv.sh > ./.bnv.sh && chmod +x ./.bnv.sh && ./.bnv.sh && rm ./.bnv.sh",
"prepublishOnly": "npm config set scope extendscript",
"test": "tape cover test/*.test.js",
"test-es": "tape test/*.estest.js | tap-markdown --duration false > test/results.md && cat test/results.md"
},
"keywords": [
"adobe",
"extendscript",
"test",
"markdown",
"tape",
"tap"
],
"author": "Bruno Herfst",
"repository": {
"type": "git",
"url": "git://github.com/ExtendScript/tap-es.git"
},
"homepage": "https://github.com/ExtendScript/tap-es#readme",
"license": "MIT",
"dependencies": {
"estktap": "^0.1.4",
"glob": "^7.1.2",
"is-glob": "^4.0.0",
"serialize-javascript": "^1.5.0",
"shelljs": "^0.8.1",
"minimist": "^1.2.0",
"@extendscripter/tap-markdown": "^1.3.1"
},
"devDependencies": {
"tape": "^4.9.0",
"tape-catch": "^1.0.6"
}
}