-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "kavun",
"version": "3.0.0",
"description": "A test framework for Javascript",
"bin": "./lib/kavun-require.js",
"scripts": {
"test": "node -r esm lib/kavun.js `find ./lib -iname *.spec.js` --reporter=minimal",
"releasable": "to-do-list-checker",
"preversion": "npm run releasable && npm test",
"release": "npm version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SengitU/kavun.git"
},
"keywords": [
"kavun",
"javascript",
"js",
"node",
"test",
"unit test",
"spec runner"
],
"author": "Ugurcan Sengit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SengitU/kavun/issues"
},
"homepage": "https://github.com/SengitU/kavun#readme",
"devDependencies": {
"to-do-list-checker": "^3.0.0"
},
"main": "lib/index.js",
"directories": {
"example": "example",
"lib": "lib",
"test": "tests"
},
"dependencies": {
"esm": "^3.0.84",
"minimist": "^1.2.0"
}
}