-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "promise-or-value",
"version": "1.0.0-alpha.2",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"typings": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest --watch",
"test-ci": "jest --coverage",
"build": "rollup -c",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "rm -rf dist/ && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/descriptinc/promise-or-value.git"
},
"keywords": [
"promise"
],
"author": {
"name": "Marcello Bastéa-Forte",
"email": "marcello@descript.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/descriptinc/promise-or-value/issues"
},
"homepage": "https://github.com/descriptinc/promise-or-value#readme",
"dependencies": {},
"files": [
"dist/**/*",
"src/**/*"
],
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"codecov": "^3.7.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.10.9",
"ts-jest": "^26.0.0",
"tslint-config-prettier": "1.18.0",
"typescript": "^3.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
}
}