forked from particle-iot/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.8 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
69
70
71
72
73
74
75
76
{
"name": "particle-docs",
"version": "0.3.0",
"private": false,
"license": "CC-BY-SA-3.0",
"repository": {
"type": "git",
"url": "git://github.com/particle-iot/docs.git"
},
"scripts": {
"start": "node ./scripts/server.js",
"test": "node ./node_modules/mocha/bin/mocha ./test/crawler.js --reporter dot",
"build": "node ./scripts/build.js",
"update-api": "./scripts/update-api.sh --force",
"spell": "mdspell --en-us --ignore-numbers --no-suggestions 'src/content/**/*.md' '!src/content/languages/**/*.md'",
"pdf-generation": "gulp --gulpfile ./scripts/pdf-generation/pdf-generation-gulpfile.js"
},
"dependencies": {
"apidoc": "^0.17.5",
"autoprefixer": "^7.1.5",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.8.9",
"gulp-ignore": "^2.0.2",
"gulp-less": "^3.3.2",
"gulp-markdown": "^1.2.0",
"gulp-postcss": "^7.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"handlebars": "^3.0.1",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"md5": "^2.2.1",
"metalsmith": "^2.3.0",
"metalsmith-autotoc": "git://github.com/particle-iot/metalsmith-autotoc",
"metalsmith-clean-css": "^5.0.1",
"metalsmith-collections": "git://github.com/particle-iot/metalsmith-collections#dynamic-collections",
"metalsmith-copy": "git://github.com/particle-iot/metalsmith-copy#improved-ci",
"metalsmith-filemetadata": "1.0.0",
"metalsmith-gzip": "^1.1.0",
"metalsmith-if": "0.0.1",
"metalsmith-ignore": "git://github.com/particle-iot/metalsmith-ignore",
"metalsmith-in-place": "^1.0.1",
"metalsmith-layouts": "^1.8.0",
"metalsmith-less": "^2.0.0",
"metalsmith-markdown": "spark/metalsmith-markdown#v0.4.2",
"metalsmith-move-up": "^1.0.0",
"metalsmith-paths": "2.1.1",
"metalsmith-permalinks": "^0.4.0",
"metalsmith-redirect": "^2.1.0",
"metalsmith-register-helpers": "0.4.0",
"metalsmith-register-partials": "git://github.com/particle-iot/metalsmith-register-partials",
"metalsmith-serve": "0.0.7",
"metalsmith-watch": "^1.0.1",
"mocha": "^3.2.0",
"prettify": "^0.1.7",
"through2": "^2.0.3"
},
"devDependencies": {
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"diff": "^3.5.0",
"eslint": "^4.18.2",
"eslint-config-particle": "^2.1.0",
"git-rev": "^0.2.1",
"markdown-spellcheck": "^0.11.0",
"simplecrawler": "spark/node-simplecrawler#v0.6.3",
"sinon": "^1.17.6",
"yargs": "^12.0.2"
},
"engines": {
"node": "10.14.1",
"npm": "6.4.1"
}
}