-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "fn.js",
"version": "0.8.1",
"description": "Functional programming strategy library for JavaScript",
"scripts": {
"pretest": "npm run -s lint && npm run -s build",
"build": "gulp wrap",
"test": "mocha ./tests",
"lint": "eslint src/index.js"
},
"main": "build/fn.js",
"repository": {
"type": "git",
"url": "git://github.com/CrowdHailer/fn.js"
},
"keywords": [
"functional",
"programming",
"fp"
],
"author": "Eli Perelman",
"homepage": "https://github.com/CrowdHailer/fn.js",
"license": "MIT",
"gitHead": "03ee04cb590f1692f60737c576ff50e43e1ea943",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/CrowdHailer/fn.js/issues"
},
"devDependencies": {
"chai": "^1.9.1",
"eslint": "^0.6.2",
"gulp": "^3.6.2",
"gulp-bump": "^0.1.8",
"gulp-eslint": "^0.1.7",
"gulp-git": "^0.4.2",
"gulp-load-plugins": "^0.5.1",
"gulp-mocha": "^0.4.1",
"gulp-rename": "^1.2.0",
"gulp-wrap-umd": "^0.2.0",
"mocha": "^2.3.4",
"yargs": "^1.2.2"
}
}