forked from TheThingsNetwork/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (53 loc) · 1.76 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
{
"name": "ttn-docs",
"private": true,
"version": "0.0.1",
"description": "A static site that serves Parse's documentation using Jekyll on GitHub Pages. Work in progress.",
"main": "js/main.js",
"scripts": {
"start": "npm run prod",
"dev": "npm run dev-webpack & npm run dev-jekyll",
"prod": "npm run webpack & npm run jekyll",
"test": "npm run spelling && npm run htmlproof",
"jekyll": "bundle exec jekyll serve",
"dev-jekyll": "bundle exec jekyll serve --incremental",
"webpack": "webpack -p",
"dev-webpack": "webpack --watch",
"spelling": "mdspell --en-us -rna _guides/**/*.md _versions/**/*.md",
"dev-spelling": "mdspell --en-us -na _guides/**/*.md _versions/**/*.md",
"htmlproof": "rm -rf _test && bundle exec jekyll build -d ./_test/docs && bundle exec htmlproofer --url-swap 'http(s)?\\://www\\.thethingsnetwork\\.org/docs:/docs' ./_test",
"add": "git add ."
},
"pre-commit": [
"webpack",
"test",
"add"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thethingsnetwork/docs.git"
},
"author": "The Things Network",
"license": "MIT",
"bugs": {
"url": "https://github.com/thethingsnetwork/docs/issues"
},
"homepage": "https://github.com/thethingsnetwork/docs#readme",
"devDependencies": {
"anchor-js": "^3.2.1",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"clipboard": "^1.5.12",
"font-awesome": "^4.6.3",
"gulp": "^3.9.1",
"gulp-download-stream": "0.0.13",
"jquery": "^2.2.4",
"markdown-spellcheck": "^0.11.0",
"pre-commit": "^1.1.3",
"tocbot": "^2.1.5",
"ttn-stylebook": "github:thethingsnetwork/stylebook",
"webpack": "^1.13.1"
}
}