-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1007 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
{
"name": "code-frame",
"version": "4.0.0",
"description": "Minimal Code Frame like babel-code-frame, but smaller",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && nyc ava",
"lint": "standard | snazzy",
"coverage": "npm test && nyc report --reporter=html && open ./coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"verbose": "true"
},
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hhsnopek/code-frame.git"
},
"author": "Henry Snopek <[email protected]> (http://hhsnopek.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hhsnopek/code-frame/issues"
},
"homepage": "https://github.com/hhsnopek/code-frame#readme",
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.0",
"nyc": "^11.0.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"dependencies": {
"left-pad": "^1.1.3"
}
}