forked from primer/github-syntax-light
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.14 KB
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
{
"version": "0.5.0",
"name": "github-syntax-light",
"description": "The CSS syntax theme for GitHub",
"homepage": "https://github.com/primer/github-syntax-light#readme",
"style": "lib/github-light.css",
"main": "index.js",
"author": "GitHub Inc.",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/primer/github-syntax-light.git"
},
"bugs": {
"url": "https://github.com/primer/github-syntax-theme-generator/issues"
},
"scripts": {
"_version": "npm version $(npm view github-syntax-theme-generator version)",
"_commit": "git commit -am \"$(npm view github-syntax-theme-generator version)\"",
"_update": "npm update && cp node_modules/github-syntax-theme-generator/build/css/github-light.* lib/.",
"ship": "npm run _update && npm run _commit && npm run _version && git push && git push --tags && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"github",
"syntax",
"css",
"theme",
"highlight",
"code"
],
"devDependencies": {
"github-syntax-theme-generator": "*"
}
}