-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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": "uter",
"version": "0.0.0",
"browser": "src/either.js",
"main": "src/either.js",
"engines": {
"node": ">=6"
},
"files": [
"src/either.js",
"LICENSE"
],
"scripts": {
"test": "npm run test:unit && npm run test:format",
"test:unit": "echo \"No tests yet\"",
"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": 80,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none"
},
"author": "Craig Martin",
"description": "A javascript which takes a functional approach to journeying with data through an application",
"license": "MIT",
"keywords": [
"javascript"
]
}