-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.1 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
{
"name": "tropic",
"version": "0.5.1",
"description": "Test Runner Library",
"main": "src/tropic.js",
"engines": {
"node": ">=10.19.0"
},
"bin": {
"tropic": "cli/index.js"
},
"scripts": {
"lint": "standard",
"test": "for test in **/*.spec.js; do node $test || exit 1; done;",
"test-integration": "node test",
"test-ci": "npm run lint && npm run test && npm run test-integration"
},
"author": "ddneat",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ddneat/tropic.git"
},
"bugs": {
"url": "https://github.com/ddneat/tropic/issues"
},
"homepage": "https://github.com/ddneat/tropic#readme",
"keywords": [
"tdd",
"unit-testing",
"test-runner",
"assert",
"async",
"promise",
"babel",
"mocha",
"jest",
"ava",
"tape",
"tap",
"qunit",
"selenium",
"jasmine",
"chai",
"minimal"
],
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"standard": "^14.3.1"
},
"dependencies": {}
}