-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 847 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
{
"name": "conductor",
"version": "1.9.0",
"main": "src/index.js",
"module": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"author": "Waldo Jeffers",
"license": "MIT",
"devDependencies": {
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"jest": "^24.8.0"
},
"engines": {
"node": ">=7"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/WaldoJeffers/conductor.git"
},
"keywords": [
"javascript",
"utility-library",
"functional",
"utility",
"fp",
"async"
],
"bugs": {
"url": "https://github.com/WaldoJeffers/conductor/issues"
},
"homepage": "https://github.com/WaldoJeffers/conductor#readme",
"description": "A modern & functional JavaScript utility library",
"sideEffects": false
}