-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
45
46
47
{
"name": "flug",
"version": "2.8.2",
"description": "Flug: The Test Runner with the Shortest Time to Takeoff",
"main": "index.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"scripts": {
"format": "npx prettier --arrow-parens=avoid --trailing-comma=none --print-width=500 --write *.js */**.js",
"lint": "node lint.js",
"test": "node test.js",
"test:html": "npx srvd --debug",
"test:ts": "npx ts-node test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielJDufour/flug.git"
},
"keywords": [
"runner",
"test",
"testing",
"fast",
"quick",
"debug",
"intuitive",
"tdd",
"assert",
"assertions",
"promise",
"promises",
"async",
"function",
"await",
"unit",
"expect"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/DanielJDufour/flug/issues"
},
"homepage": "https://github.com/DanielJDufour/flug#readme"
}