-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "task-worklet",
"version": "0.1.0",
"description": "Streamlined processing of tasks in a shared threadpool.",
"source": "src/index.js",
"main": "dist/task-worklet.js",
"umd:main": "dist/task-worklet.js",
"module": "dist/task-worklet.module.js",
"scripts": {
"build": "microbundle -f umd,es && microbundle -f iife src/polyfill.js -o polyfill/index.js",
"test": "eslint \"{src,test}/**/*.test.{mjs,js}\" && karmatic --no-coverage"
},
"files": [
"dist",
"src",
"polyfill.js"
],
"eslintConfig": {
"extends": [
"google",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"require-jsdoc": 0,
"valid-jsdoc": 0,
"max-len": 0,
"guard-for-in": 0,
"new-cap": 0,
"prefer-rest-params": 0
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"repository": "developit/task-worklet",
"keywords": [
"tasks",
"task worklet",
"TaskWorklet",
"threads",
"multithreading"
],
"author": "Jason Miller <developit@google.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/developit/task-worklet",
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"file-loader": "^6.1.0",
"karmatic": "^2.1.0",
"microbundle": "^0.12.3",
"prettier": "^2.1.2",
"webpack": "^4.44.1"
}
}