forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "cypress-documentation",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "3.4.1"
},
"engines": {
"node": "^8.4.0"
},
"license": "MIT",
"bugs": "https://github.com/cypress-io/cypress-documentation/issues",
"author": "Cypress.io team and contributors",
"homepage": "https://docs.cypress.io",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress-documentation.git"
},
"scripts": {
"deps": "deps-ok && dependency-check . --no-default-entries --entry cy_scripts/deploy.js",
"prebuild": "npm run clean && npm run deps && gulp pre:build",
"build": "node --stack-size=8192 ./index.js generate",
"postbuild": "gulp post:build && git-last -m -f public/build.json",
"clean": "hexo clean",
"clean-deps": "rm -rf node_modules",
"predeploy": "NODE_ENV=production npm run build",
"deploy": "echo Deploying built docs",
"postdeploy": "npm run deploy-prebuilt",
"deploy-prebuilt": "node ./cy_scripts/deploy.js",
"scrape": "node ./cy_scripts/scrape.js",
"start": "node --stack-size=8192 ./index.js server --port 2222",
"cypress:run": "cypress run",
"test-e2e": "start-server-and-test start http://localhost:2222 cypress:run",
"test": "mocha --compilers coffee:coffee-script/register --recursive",
"test-watch": "npm run test --silent -- --watch",
"lint": "echo 'Linting scripts...' && eslint --fix *.js cy_scripts/*.js scripts/*.js && echo 'Lint successful'",
"precommit": "npm run lint"
},
"devDependencies": {
"@cypress/deploy-bits": "1.7.1",
"@cypress/env-or-json-file": "^2.0.0",
"@cypress/questions-remain": "^1.0.1",
"beeper": "^1.1.1",
"bin-up": "^1.0.1",
"chai": "^4.0.2",
"chalk": "^2.0.1",
"cheerio": "^1.0.0-rc.1",
"coffee-script": "^1.12.7",
"colors": "^1.1.2",
"common-tags": "^1.4.0",
"concurrent-transform": "^1.0.0",
"cypress": "^1.1.0",
"dependency-check": "^2.9.1",
"deps-ok": "^1.2.0",
"eslint": "^4.6.1",
"eslint-plugin-cypress-dev": "^1.1.1",
"fs-extra": "^4.0.2",
"ggit": "^2.3.0",
"git-last": "^1.2.0",
"glob": "^7.1.1",
"got": "^8.0.0",
"gulp": "^3.9.1",
"gulp-awspublish": "^3.3.0",
"gulp-clean": "^0.3.2",
"gulp-debug": "^3.1.0",
"gulp-rev-all": "^0.9.7",
"human-interval": "^0.1.6",
"husky": "0.14.3",
"inquirer": "^4.0.0",
"minimist": "^1.2.0",
"mocha": "^4.0.1",
"nock": "^9.0.13",
"npm-run-all": "^4.0.2",
"pluralize": "^7.0.0",
"ramda": "^0.25.0",
"request-promise": "^4.2.1",
"run-sequence": "^2.2.0",
"sinon": "^4.1.2",
"sinon-chai": "^2.10.0",
"snap-shot-it": "^4.0.1",
"start-server-and-test": "1.0.0",
"underscore.string": "^3.3.4",
"wait-on": "^2.0.2",
"yamljs": "^0.3.0"
},
"dependencies": {
"bluebird": "3.5.1",
"check-more-types": "^2.24.0",
"debug": "^3.1.0",
"docsearch.js": "2.5.0",
"fira": "github:cypress-io/fira#fb63362742eea8cdce0d90825ab9264d77719e3d",
"font-awesome": "4.7.0",
"hexo": "3.4.2",
"hexo-algoliasearch": "0.2.2",
"hexo-cli": "^1.0.3",
"hexo-filter-cleanup": "1.0.7",
"hexo-generator-alias": "0.1.3",
"hexo-generator-seo-friendly-sitemap": "0.0.21",
"hexo-prism-plugin": "2.2.0",
"hexo-renderer-marked": "0.3.0",
"hexo-renderer-scss": "github:cypress-io/hexo-renderer-scss#node-8",
"hexo-server": "0.2.2",
"lazy-ass": "^1.6.0",
"lodash": "4.17.4",
"lunr": "2.1.4",
"menuspy": "1.2.1",
"scrollingelement": "1.5.2"
}
}