-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 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
44
45
46
47
48
49
50
51
{
"name": "beetles",
"version": "1.0.0",
"description": "Beetles helper utilities",
"main": "beetles.js",
"scripts": {
"test": "grunt test",
"watch": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/Moharu/beetles"
},
"config": {
"blanket": {
"pattern": "src/"
},
"mocha-cov-reporter": {
"failOnError": true,
"threshold": 100,
"useColors": true
}
},
"keywords": [
"helper",
"utilities",
"beatles",
"beetles"
],
"author": "João Teló <Moharu>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Moharu/beetles/issues"
},
"homepage": "https://github.com/Moharu/beetles",
"devDependencies": {
"blanket": "^1.2.2",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.6",
"grunt-mocha-test": "^0.12.7",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.4.5",
"mocha-cov-reporter": "^1.1.3",
"mocha-multi": "^0.8.0"
},
"dependencies": {
"moment": "^2.12.0"
}
}