forked from opentracing/opentracing.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.78 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
{
"name": "open-tracing",
"version": "0.0.1",
"description": "",
"main": "index.js",
"license": "Apache 2.0",
"scripts": {
"===================================": "===================================",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build ./ documentation",
"docs:watch": "onchange _docs -- npm run docs:build",
"===================================": "=================================== ",
"css:autoprefixer": "postcss -u autoprefixer -r css/*",
"css:build": "node-sass _sass/main.scss -o css && npm run css:autoprefixer",
"css:watch": "onchange _sass -- npm run css:build",
"===================================": "=================================== ",
"build:production": "npm run css:build && npm run docs:build && jekyll build --config _config.yml",
"build:localhost": "npm run css:build && npm run docs:build && jekyll build --config _config.localhost.yml",
"===================================": "=================================== ",
"dev": "npm run build:localhost && parallelshell 'jekyll serve --config _config.localhost.yml' 'npm run css:watch' 'npm run docs:watch'",
"production": "npm run build:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentracing/opentracing.io.git"
},
"author": "Pierre Reimerz",
"bugs": {
"url": "https://github.com/opentracing/opentracing.io/issues"
},
"homepage": "https://github.com/opentracing/opentracing.io#readme",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.5.0",
"gitbook-cli": "^2.3.0",
"node-sass": "^3.10.1",
"onchange": "^3.0.2",
"parallelshell": "^3.0.1",
"postcss-cli": "^2.6.0"
},
"engines" : {
"node" : ">=4.6.0"
}
}