-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 924 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
{
"name": "toothpick",
"version": "1.4.0",
"description": "Doing the gross javascript things so you don't have to.",
"main": "toothpick.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover -x *.test.js _mocha -- -R spec test/main.test.js",
"ci": "npm run test",
"codecov": "cat coverage/*/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "[email protected]:qbunt/toothpick.js.git"
},
"keywords": [
"gross",
"javascript",
"utils",
"utilities",
"fixes"
],
"author": "qbunt",
"license": "MIT",
"bugs": {
"url": "https://github.com/qbunt/toothpick.js/issues"
},
"homepage": "https://github.com/qbunt/toothpick.js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"codecov": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}