-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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": "sync-threads",
"version": "1.0.1",
"description": "Perform asynchronous work synchronously using worker threads",
"author": "Michael Hart <[email protected]> (https://github.com/mhart)",
"license": "MIT",
"repository": "github:lambci/sync-threads",
"main": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"types"
],
"devDependencies": {
"@types/node": "^12.19.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"scripts": {
"declaration": "tsc -p declaration.tsconfig.json",
"build": "npm run declaration",
"prepare": "npm run build",
"lint": "prettier -c . && eslint ."
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"node": true,
"es2017": true
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
}
}
}