-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "@unction/cascadingkeychain",
"version": "10.0.1",
"description": "Cascades through multiple keychains in order to arrive at a value",
"keywords": [
"unction",
"functional"
],
"contributors": [
{
"name": "Kurtis Rainbolt-Greene",
"email": "[email protected]",
"url": "https://kurtis.rainbolt-greene.online"
}
],
"license": "ISC",
"homepage": "https://github.com/unctionjs/cascadingKeyChain#readme",
"repository": "github:unctionjs/cascadingKeyChain",
"bugs": "https://github.com/unctionjs/cascadingKeyChain/issues",
"main": "transpiled/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"test": "NODE_ENV=test jest --coverage './test.js'",
"build": "babel './index.js' -d './transpiled/'",
"lint": "eslint './index.js'",
"check": "flow-typed install && flow check",
"ci": "npm run test",
"watch": "chokidar './index.js' './test.js' --command 'npm run ci --silent'"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.3",
"babel-jest": "23.0.0",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-pipe-operator-curry": "1.0.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"chokidar-cli": "1.2.0",
"eslint": "4.13.1",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flowtype": "2.40.1",
"eslint-plugin-immutable": "1.0.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-promise": "3.6.0",
"flow": "0.2.3",
"flow-bin": "0.61.0",
"flow-typed": "2.2.3",
"jest": "23.0.0"
},
"dependencies": {
"@unction/dig": "1.0.1",
"@unction/isnil": "5.0.0",
"@unction/reducevalues": "7.0.0",
"@unction/replacewhen": "10.0.0"
},
"files": [
"transpiled/index.js"
]
}