-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
49
50
51
52
53
54
55
56
{
"name": "preact-highlight",
"version": "1.1.3",
"description": "a syntax highlight component for preact",
"main": "./build/index.js",
"scripts": {
"build": "babel src -d build",
"theme": "node ./builder/theme.js && git add -A && git commit -m 'chore(theme): build theme for cdn'",
"prever": "npm run build",
"ver": "standard-version -m 'chore(release): v%s'",
"postver": "git push --follow-tags origin master && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonChen1982/preact-highlight.git"
},
"keywords": [
"highlight",
"syntax",
"preact"
],
"author": {
"name": "jason Chen",
"email": "jasonchen1882@gmail.com",
"url": "http://jason82.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonChen1982/preact-highlight/issues"
},
"homepage": "https://github.com/jasonChen1982/preact-highlight#readme",
"standard-version": {
"scripts": {
"postbump": "npm run theme"
}
},
"peerDependencies": {
"preact": "^6.4.0"
},
"dependencies": {
"highlight.js": "^9.12.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"camelcase": "^4.1.0",
"eslint": "^4.0.0",
"eslint-config-egg": "^4.2.1",
"mkdirp": "^0.5.1",
"standard-version": "^4.2.0",
"stylus": "^0.54.5"
}
}