forked from miraks/babel-plugin-pipe-operator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "babel-plugin-pipe-operator-curry",
"version": "1.0.0",
"description": "Alternative to babel-plugin-pipe-operator",
"main": "lib/index.js",
"scripts": {
"build": "babel src/index.js -o lib/index.js",
"watch-build": "npm run build -- -w",
"test": "mocha --compilers js:babel-register",
"watch-test": "npm test -- -w",
"lint": "eslint **/*.js --quiet"
},
"repository": {
"type": "git",
"url": "https://github.com/Swizz/babel-plugin-pipe-operator-curry"
},
"keywords": [
"babel",
"babel-plugin",
"pipe",
"pipe operator",
"currying",
"curry"
],
"author": "Alexey Volodkin <[email protected]>",
"contributors": [{
"name": "Quentin Gerodel",
"email": "[email protected]"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/Swizz/babel-plugin-pipe-operator-curry/issues"
},
"homepage": "https://github.com/Swizz/babel-plugin-pipe-operator-curry",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-plugin-strict-equality": "^1.0.0",
"babel-plugin-implicit-return": "^1.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"eslint": "^2.2.0",
"mocha": "^2.4.5"
}
}