-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "fawait",
"version": "2.3.0",
"browser": "src/index.js",
"main": "src/index.js",
"types": "fawait.d.ts",
"engines": {
"node": ">=9"
},
"files": [
"src/index.js",
"fawait.d.ts",
"LICENSE"
],
"scripts": {
"test": "npm run test:unit && npm run test:format",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --verbose",
"test:format": "prettier -l \"**/*.{js,json,md}\" \"!src/**/*.spec.js\" \"!coverage/**/*\"",
"format": "prettier --write \"**/*.{js,json,md}\" \"!src/**/*.spec.js\" \"!coverage/**/*\"",
"pub": "npm run test && np"
},
"devDependencies": {
"jest": "^24.1.0",
"np": "^4.0.2",
"prettier": "^1.9.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node"
},
"prettier": {
"printWidth": 85,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none"
},
"author": "Craig Martin",
"description": "A javascript library for making await more functional",
"license": "MIT",
"keywords": [
"javascript"
]
}