-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 981 Bytes
/
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
{
"name": "particl",
"version": "0.8.3",
"author": {
"name": "Chris Campbell",
"url": "https://github.com/quaelin"
},
"keywords": [
"async",
"asynchronous",
"promise",
"promises"
],
"bugs": {
"url": "https://github.com/quaelin/particl/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/quaelin/particl"
},
"main": "./dist/particl.js",
"engines": {
"node": ">=8"
},
"scripts": {
"prepublishOnly": "babel src --out-dir dist --ignore __tests__/*",
"pretest": "eslint .",
"test": "jest --verbose src"
},
"license": "MIT",
"dependencies": {
"core-js": ">= 3"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"core-js": "^3.8.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.5.2"
}
}