-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
48 lines (48 loc) · 1.27 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
{
"version": "0.5.0",
"name": "github-syntax-theme-generator",
"description": "The GitHub syntax theme generator will generate themes for multiple platforms based on the GitHub syntax theme.",
"homepage": "https://github.com/primer/github-syntax-theme-generator",
"author": "GitHub, Inc.",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"lib",
"build"
],
"repository": "https://github.com/primer/github-syntax-theme-generator.git",
"bugs": {
"url": "https://github.com/primer/github-syntax-theme-generator/issues"
},
"scripts": {
"build": "node index.js",
"prepublish": "npm run build",
"ava": "ava --verbose --fail-fast \"test/**/*.js\"",
"lint": "eslint **/*.js",
"test": "npm run lint && npm run build && npm run ava"
},
"devDependencies": {
"ace": "git+https://github.com/ajaxorg/ace.git",
"ava": "^0.18.1",
"colorable": "^1.0.5",
"css-parse": "2.0.0",
"css-stringify": "2.0.0",
"eslint": "^3.14.1",
"eslint-plugin-github": "^0.8.0",
"lodash": "^4.16.6",
"mkdirp": "^0.5.1",
"node-sass": "^4.4.0",
"plist": "^2.0.1",
"primer-support": "^4.0.0"
},
"keywords": [
"syntax",
"github",
"css",
"theme",
"code",
"highlight",
"generator"
]
}