-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "log-chainable",
"version": "0.2.2",
"description": "A JS log wrapper that makes defining namespaces easy with method chaining",
"keywords": [
"chainable",
"debug",
"debugging",
"log",
"logger",
"logging",
"namespaces",
"namespacing",
"util",
"utility",
"utils"
],
"main": "index.js",
"scripts": {
"check": "eslint ./lib/**/**/**/**/*.js",
"test": "npm run test:node && npm run test:browser",
"test:browser": "browserify index.test.js ./lib/*.test.js | tape-run",
"test:node": "NODE_ENV=test tape index.test.js ./lib/*.test.js",
"test:one": "NODE_ENV=test tape",
"test:webpack": "webpack --config webpack.test.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugeats/log-chainable.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bugeats/log-chainable/issues"
},
"homepage": "https://github.com/bugeats/log-chainable#readme",
"devDependencies": {
"browserify": "^16.5.1",
"glob": "^7.1.6",
"tape": "^4.13.2",
"tape-run": "^7.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-tape-run": "0.0.7"
},
"dependencies": {
"chalk": "^4.0.0",
"strip-ansi": "^6.0.0"
}
}