-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 872 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
{
"name": "debug-dude",
"version": "1.0.3",
"description": "Thin wrapper around visionmedia`s debug",
"keywords": [
"debug"
],
"repository": {
"type": "git",
"url": "https://github.com/ggarek/debug-dude.git"
},
"main": "lib/index.js",
"scripts": {
"start": "npm run lib",
"lib": "npm run test && babel src/ --out-dir lib/ --ignore __test__",
"test": "DEBUG=dude* babel-tape-runner src/**/__test__/**/*.test.js",
"preversion": "npm start && git add lib",
"version": "exit 0",
"postversion": "git push origin HEAD && git push origin --tag"
},
"author": "igor ovsiannikov <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"babel-tape-runner": "^1.2.0",
"debug": "^2.2.0",
"sinon": "^1.17.0",
"tape": "^4.2.0"
},
"peerDependencies": {
"debug": "^2.2.0"
}
}