This repository has been archived by the owner on Feb 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
{
"name": "@nichoth/tap-ssc",
"type": "module",
"description": "Run tests in a browser environment from the command line",
"version": "0.6.8",
"main": "index.js",
"bin": {
"tap-ssc": "cli.mjs"
},
"scripts": {
"lint": "eslint \"./**/*.{ts,js}\"",
"test": "cd example && rm -rf node_modules package-lock.json && npm i && npm test",
"test-html": "cd example && rm -rf node_modules package-lock.json && npm i && npm run test-html",
"test-fail": "cd example && rm -rf node_modules package-lock.json && npm i && npm run test-fail",
"test-err": "cd example && rm -rf node_modules package-lock.json && npm i --silent && npm run test-err",
"postinstall": "ssc build",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"@nichoth/tree-kill": "^1.2.3",
"@socketsupply/socket": "^0.5.4",
"esbuild": "^0.24.0",
"readable-stream": "^4.4.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@nichoth/tapzero": "^0.8.4",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"tap-spec": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/tap-ssc.git"
},
"author": "nichoth <[email protected]> (https://nichoth.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nichoth/tap-ssc/issues"
},
"homepage": "https://github.com/nichoth/tap-ssc#readme",
"standardx": {
"ignore": [
"dist/*",
"example/*"
]
},
"directories": {
"example": "example"
},
"keywords": [
"ssc",
"tap",
"socket",
"supply",
"test",
"browser"
]
}