-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
39 lines (39 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
{
"name": "ospec",
"version": "4.2.1",
"description": "Noiseless testing framework",
"main": "ospec.js",
"unpkg": "ospec.js",
"keywords": [
"testing"
],
"author": "Leo Horie <[email protected]>",
"license": "MIT",
"files": [
"bin",
"ospec.js",
"scripts/rename-stable-binaries.js"
],
"bin": "./bin/ospec",
"repository": "github:MithrilJS/ospec",
"dependencies": {
"glob": "^9.0.0"
},
"scripts": {
"postinstall": "node ./scripts/rename-stable-binaries.js",
"test": "ospec-stable tests/test-*.js",
"test-api": "ospec-stable tests/test-api-*.js",
"test-cli": "ospec-stable tests/test-cli.js",
"self-test": "node ./bin/ospec tests/test-*.js",
"self-test-api": "node ./bin/ospec tests/test-api-*.js",
"self-test-cli": "node ./bin/ospec tests/test-cli.js",
"lint": "eslint --cache --ignore-pattern \"tests/fixtures/**/*.*\" . bin/ospec",
"lint-fix": "eslint --cache --ignore-pattern \"tests/fixtures/**/*.*\" --fix . bin/ospec"
},
"devDependencies": {
"cmd-shim": "4.0.2",
"compose-regexp": "^0.6.22",
"eslint": "^6.8.0",
"ospec-stable": "npm:[email protected]"
}
}