-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "codeframe",
"description": "Terminal code previews.",
"author": "Jarid Margolin <[email protected]>",
"version": "0.0.2",
"homepage": "https://github.com/jaridmargolin/codeframe",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaridmargolin/codeframe"
},
"bugs": {
"url": "https://github.com/jaridmargolin/codeframe/issues"
},
"scripts": {
"test": "standard && mocha",
"inspect-test": "inspect _mocha --no-timeouts",
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"main": "lib/index.js",
"dependencies": {
"chalk": "^2.0.0",
"figures": "^2.0.0",
"highlight-es": "^1.0.0",
"lodash": "^4.15.0",
"strip-ansi": "^5.0.0"
},
"devDependencies": {
"chai": "^4.0.0",
"coveralls": "^3.0.0",
"inspect-process": "^0.5.0",
"istanbul": "^0.4.5",
"mocha": "^6.0.0",
"nyc": "^13.2.0",
"standard": "^12.0.0"
},
"standard": {
"ignore": ["test/fixtures/**/*.js"]
}
}