-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "babel-plugin-pipe-operator",
"version": "1.0.0",
"description": "Overload the pipe operator (`|`) to provide Elixir/F#/Shell-like behavior",
"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/miraks/babel-plugin-pipe-operator"
},
"keywords": [
"babel",
"babel-plugin",
"pipe",
"pipe operator"
],
"author": "Alexey Volodkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miraks/babel-plugin-pipe-operator/issues"
},
"homepage": "https://github.com/miraks/babel-plugin-pipe-operator",
"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"
}
}