forked from developit/greenlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "@xzar90/greenlet",
"version": "1.1.2",
"description": "Move an async function into its own thread.",
"source": "greenlet.js",
"main": "dist/greenlet.js",
"module": "dist/greenlet.m.js",
"exports": "dist/greenlet.modern.js",
"unpkg": "dist/greenlet.umd.js",
"types": "./index.d.ts",
"scripts": {
"prepare": "microbundle",
"test": "eslint *.js && npm run -s prepare && karmatic --no-coverage",
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish --access public"
},
"eslintConfig": {
"extends": "eslint-config-developit",
"rules": {
"prefer-spread": 0,
"prefer-rest-params": 0
}
},
"files": [
"greenlet.js",
"index.d.ts",
"dist"
],
"repository": "xzar90/greenlet",
"keywords": [
"greenlet",
"thread",
"async",
"worker",
"web worker"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"contributors": [
"Marc Bouchenoire <[email protected]> (https://www.marcbouchenoire.com/)"
],
"license": "MIT",
"homepage": "https://github.com/xzar90/greenlet",
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-developit": "^1.2.0",
"karmatic": "^1.4.0",
"microbundle": "^0.13.0",
"webpack": "^4.29.6",
"@babel/core": "^7.4.5",
"core-js": "^2.6.5"
}
}