-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 791 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 791 Bytes
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
{
"name": "elv",
"longName": "Elvis operator functionality for JavaScript.",
"version": "2.2.0",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0"
},
"keywords": [
"elvis",
"existential",
"is",
"defined",
"coalesce",
"truthy",
"exists"
],
"license": "MIT",
"main": "./lib",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dsfields/elv"
},
"scripts": {
"lint": "eslint ./*",
"test": "NODE_ENV=test nyc --reporter=lcov --reporter=text --check-coverage --lines 100 --functions 100 --branches 100 mocha --recursive ./test"
}
}