-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 855 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
32
33
34
35
36
{
"name": "funcker",
"version": "1.0.0",
"description": "Functional library",
"main": "index.js",
"scripts": {
"test": "npm run lint && jest --coverage --forceExit",
"lint": "eslint test lib index.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "https://github.com/roppa/funcker.git"
},
"keywords": [
"Functional"
],
"author": "Mark Robson",
"license": "MIT",
"bugs": {
"url": "https://github.com/roppa/funcker/issues"
},
"homepage": "https://github.com/roppa/funcker#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3",
"locate-path": "2.0.0"
},
"dependencies": {}
}