-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "greenlet",
"version": "1.1.0",
"description": "Move an async function into its own thread.",
"source": "greenlet.js",
"main": "dist/greenlet.js",
"module": "dist/greenlet.m.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"
},
"eslintConfig": {
"extends": "eslint-config-developit",
"rules": {
"prefer-spread": 0,
"prefer-rest-params": 0
}
},
"files": [
"greenlet.js",
"index.d.ts",
"dist"
],
"repository": "developit/greenlet",
"keywords": [
"greenlet",
"thread",
"async",
"worker",
"web worker"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"license": "MIT",
"homepage": "https://github.com/developit/greenlet",
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-developit": "^1.1.1",
"karmatic": "^1.4.0",
"microbundle": "^0.4.3",
"webpack": "^4.29.6"
}
}