-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "ArrowJS",
"version": "0.0.0",
"description": "A small library that implements Arrows for asynchronous functions.",
"main": "./src/main.js",
"engines": {
"node": ">=0.11.13"
},
"directories": {
"lib": "src"
},
"scripts": {
"test": "eslint . && browserify src/*.test.js -t [ babelify ] | node",
"build": "browserify src/main.js -o dist/arrow.js -t [ babelify ]"
},
"repository": {
"type": "git",
"url": "https://github.com/debjitbis08/ArrowJS"
},
"keywords": [
"Arrows",
"Functional Programming"
],
"author": {
"name": "Debjit Biswas",
"email": "[email protected]",
"url": "http://www.debjitbiswas.com"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "~5.9.3",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jsverify": "^0.8.3",
"tape": "^4.8.0"
},
"dependencies": {
"lodash.curry": "^4.1.1",
"lodash.flow": "^3.5.0"
}
}