-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 900 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
37
38
39
40
{
"name": "junk-drawer",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/Khelldar/junk-drawer"
},
"description": "",
"engines": {
"node": ">=4.0.0"
},
"main": "src/index.js",
"scripts": {
"test": "mocha -w",
"ci-test": "multi='xunit=test-reports.xml spec=-' ./node_modules/.bin/mocha -R mocha-multi test/*.test.js",
"lint": "eslint src test",
"doc": "esdoc -c esdoc.json"
},
"dependencies": {
"lodash": "^3.10.1",
"validator": "^4.2.1"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"esdoc": "^0.3.1",
"eslint": "^1.2.1",
"sinon-promises": "^1.0.0",
"mocha": "^2.2.5",
"mocha-multi": "^0.7.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
},
"maintainers": [
{
"name": "Chris Langager",
"email": "[email protected]"
}
]
}