-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "docpress-base",
"description": "Base theme for Docpress.",
"homepage": "https://github.com/docpress/docpress-base#readme",
"version": "0.8.0",
"main": "index.js",
"author": {
"email": "[email protected]",
"name": "Rico Sta. Cruz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docpress/docpress-base.git"
},
"bugs": {
"url": "https://github.com/docpress/docpress-base/issues"
},
"dependencies": {
"autoprefixer": "6.5.3",
"browserify": "13.1.1",
"debounce": "1.0.0",
"dom101": "1.3.0",
"github-markdown-css": "2.4.1",
"iconfonts": "0.10.0",
"normalize.css": "5.0.0",
"nprogress": "0.2.0",
"onmount": "1.3.0",
"pjax": "0.2.4",
"postcss": "5.2.5",
"pug": "^3.0.1",
"stylus": "0.54.5",
"uglifyify": "3.0.4",
"ware": "1.3.0"
},
"devDependencies": {
"coveralls": "2.11.15",
"docpress-core": "github:docpress/docpress-core",
"expect": "1.20.2",
"metalsmith": "2.3.0",
"mocha": "^5.2.0",
"mocha-clean": "1.0.0",
"nyc": "9.0.1",
"standard": "8.4.0",
"standard-version": "^8.0.1",
"superstatic": "4.0.3"
},
"scripts": {
"build": "mkdir -p cache && ./bin/build --css > cache/style.css && ./bin/build --js > cache/script.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"prepublish": "npm run build",
"pretest": "npm run lint",
"serve": "ss fixture/onmount/_docpress",
"test": "nyc mocha",
"watch": "mocha -R min --watch",
"release": "standard-version"
},
"license": "MIT",
"standard": {
"global": [
"before",
"beforeEach",
"describe",
"expect",
"it"
]
}
}