-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.41 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
{
"name": "@expo/results",
"version": "1.0.0",
"description": "An efficient, standards-compliant library for representing results of successful or failed operations",
"main": "build/results.js",
"types": "build/results.d.ts",
"files": [
"build"
],
"scripts": {
"clean": "rm -rf build coverage",
"lint": "eslint src",
"prepublish": "rm -rf build coverage",
"prepare": "tsc",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"coverageDirectory": "<rootDir>/coverage",
"coverageProvider": "babel",
"roots": [
"<rootDir>/src/"
],
"testEnvironment": "node"
},
"eslintConfig": {
"extends": "universe/node"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"engines": {
"node": ">=10"
},
"keywords": [
"result",
"fulfilled",
"rejected",
"allsettled"
],
"repository": {
"type": "git",
"url": "git+https://github.com/expo/results.git"
},
"author": "Expo",
"license": "MIT",
"bugs": {
"url": "https://github.com/expo/results/issues"
},
"homepage": "https://github.com/expo/results#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@types/jest": "^27.0.1",
"eslint": "^7.32.0",
"eslint-config-universe": "^7.0.1",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"ts-jest": "~27.0.5",
"typescript": "^4.4.2"
}
}