-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.78 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
63
64
65
66
67
68
69
70
{
"name": "web-worker-proxy",
"version": "0.5.5",
"description": "A better way of working with web workers",
"keywords": [
"web worker",
"proxy"
],
"types": "index.d.ts",
"main": "lib/index.js",
"files": [
"lib/",
"index.d.ts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satya164/web-worker-proxy.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"scripts": {
"lint": "eslint .",
"flow": "flow",
"build": "babel src --out-dir lib --ignore '**/__tests__/**' --source-maps && flow-copy-source -i '**/__tests__/**' src lib",
"prebuild": "del lib/",
"prepare": "yarn build",
"example": "parcel example/index.html",
"test": "jest",
"release": "release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"core-js": "^3.1.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@release-it/conventional-changelog": "^1.1.0",
"codecov": "^3.5.0",
"commitlint": "^8.0.0",
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"eslint-config-satya164": "^2.4.1",
"flow-bin": "^0.100.0",
"flow-copy-source": "^2.0.6",
"husky": "^2.4.0",
"jest": "^24.8.0",
"parcel": "^1.12.3",
"prettier": "^1.18.2",
"release-it": "^12.3.0",
"structured-clone": "^0.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn flow && yarn test"
}
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
]
}
}