-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.26 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
{
"name": "tracelog",
"version": "1.4.5",
"description": "util functions for debug and trace; can do type checking for backend mocking check for fast iteration",
"main": "lib/index.js",
"dependencies": {
"colors": "^1.1.2",
"mockjs": "^1.0.1-beta3"
},
"devDependencies": {
"mocha": "^1.17.1",
"chai": "^1.9.1",
"@types/colors": "^0.6.33",
"istanbul": "0.4.5"
},
"scripts": {
"build": "tsc -w",
"test": "mocha -w",
"testprint": "mocha test/index.spec_print.js -w",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --slow 0 test/"
},
"repository": {
"type": "git",
"url": "https://github.com/fex-team/tracelog"
},
"author": "lyuqi",
"license": "ISC",
"bugs": {
"url": "https://github.com/fex-team/tracelog/issues"
},
"typescript": {
"definition": "index.d.ts"
},
"typings": "index.d.ts",
"homepage": "https://github.com/fex-team/tracelog"
}