-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 977 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
{
"name": "gruvbox-sublime",
"version": "4.0.1",
"description": "gruvbox for Vim theme ported to Sublime Text",
"repository": {
"type": "git",
"url": "git+https://github.com/Briles/gruvbox.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Briles/gruvbox/issues"
},
"homepage": "https://github.com/Briles/gruvbox#readme",
"devDependencies": {
"chai": "^4.2.0",
"chroma-js": "^2.1.0",
"commander": "^6.2.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gulp": "^4.0.2",
"lodash": "^4.17.21",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"plist": "^3.0.4"
},
"scripts": {
"style": "npm run style:main",
"style:main": "eslint ./",
"test": "npm run test:main",
"test:main": "nyc --reporter=none mocha ./test/test.js",
"validate": "npm run style & npm run test",
"cover": "npm run test & nyc report --reporter=html"
}
}