-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
{
"name": "@rocicorp/resolver",
"version": "1.0.2",
"description": "A simple promise resolver",
"repository": "github:rocicorp/resolver",
"keywords": [
"Promise",
"resolver",
"completer",
"resolve",
"reject"
],
"license": "Apache-2.0",
"homepage": "https://github.com/rocicorp/resolver#readme",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "mocha --ui=tdd out/*.test.js",
"pretest": "npm run build",
"format": "prettier --write 'src/**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"check-format": "prettier --check 'src/**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/",
"build": "rm -rf out && tsc",
"prepack": "npm run lint && npm run test "
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"sinon": "^15.2.0",
"typescript": "^5.2.2"
},
"module": "out/resolver.js",
"main": "out/resolver.js",
"type": "module",
"types": "out/resolver.d.ts",
"exports": {
".": "./out/resolver.js"
},
"files": [
"out/*",
"!out/*.test.*"
]
}