-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.2 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
{
"version": "0.5.0",
"name": "github-atom-light-syntax",
"theme": "syntax",
"description": "GitHub's official light syntax theme as an atom theme",
"homepage": "https://github.com/primer/github-atom-light-syntax#readme",
"style": "index.less",
"author": "GitHub Inc.",
"license": "MIT",
"files": [
"index.less",
"styles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/primer/github-atom-light-syntax.git"
},
"bugs": {
"url": "https://github.com/primer/github-syntax-theme-generator/issues"
},
"scripts": {
"_version": "apm publish $(npm view github-syntax-theme-generator version)",
"_commit": "git commit -am \"$(npm view github-syntax-theme-generator version)\"",
"_update": "npm update && cp -rf node_modules/github-syntax-theme-generator/build/atom/github-light/*.less ./styles/",
"ship": "npm run _update && npm run _commit && npm run _version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"github",
"syntax",
"css",
"theme",
"highlight",
"code",
"dark"
],
"devDependencies": {
"github-syntax-theme-generator": "*"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
}
}