-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
31 lines (31 loc) · 841 Bytes
/
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
{
"name": "workshop-functional-js",
"version": "1.0.0",
"description": "Workshop to learn basic functional programming in JavaScript.",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "mocha test/**",
"lint": "eslint index.js src/** test/**; exit 0;"
},
"dependencies": {
"chalk": "1.1.3",
"lodash": "4.17.4"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.15.0",
"eslint-plugin-mocha": "4.8.0",
"mocha": "3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvinberthelot/workshop-functional-js.git"
},
"author": "Alvin Berthelot",
"license": "ISC",
"bugs": {
"url": "https://github.com/alvinberthelot/workshop-functional-js/issues"
},
"homepage": "https://github.com/alvinberthelot/workshop-functional-js#readme"
}