-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "pipey",
"version": "1.0.0-alpha.0",
"description": "Utility functions to convert class-based api's to parameter-based functions",
"main": "index.js",
"repository": "https://github.com/phenax/pipey",
"author": "Akshay Nair <[email protected]>",
"license": "MIT",
"keywords": [
"functional",
"pipeline",
"pipeline-operator",
"point-free",
"pipe",
"functional-programming",
"fp",
"js"
],
"scripts": {
"build": "babel src --out-dir build",
"watch": "yarn build --watch",
"test": "jest --watch",
"test:ci": "jest --coverage",
"coverage:ci": "codecov"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-proposal-pipeline-operator",
{
"proposal": "minimal"
}
]
]
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"jest": "^23.6.0"
}
}