-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.29 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
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"babel-plugin-syntax-function-bind": "^6.8.0"
},
"description": "Syntactic sugar for easy to read function composition.",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-helper-plugin-test-runner": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-es2015-destructuring": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"eslint": "^3.10.1",
"eslint-config-canonical": "^5.5.0",
"husky": "^0.11.9",
"mocha": "^3.1.2"
},
"engines": {
"node": ">5.0.0"
},
"keywords": [
"babel-plugin"
],
"license": "BSD-3-Clause",
"main": "dist/index.js",
"name": "babel-plugin-transform-function-composition",
"repository": {
"type": "git",
"url": "https://github.com/gajus/babel-plugin-transform-function-composition"
},
"scripts": {
"build": "NODE_ENV=production babel ./src --out-dir ./dist",
"lint": "eslint ./src",
"precommit": "npm run test",
"test": "NODE_ENV=development npm run lint && npm run build && mocha --compilers js:babel-register"
},
"version": "1.0.0"
}