forked from magento-research/pwa-devdocs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 964 Bytes
/
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
{
"name": "pwa-devdocs",
"version": "1.0.0",
"description": "A documentation site for Magento PWA",
"main": "gulpfile.js",
"dependencies": {
"broken-link-checker-local": "^0.1.1",
"gulp": "^3.9.1",
"jekyll-tasks": "^1.2.1",
"jquery": "^3.3.1"
},
"devDependencies": {},
"scripts": {
"start": "gulp dev",
"build": "gulp build",
"package": "jekyll build --source src/ --config src/_config.yml,_config-production.yml && tar -cvvf site.tar _site",
"tests": "npm run test-links",
"test-links": "rm -fr _site && npm run build && node_modules/broken-link-checker-local/out/bin.js _site -rog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magento-research/pwa-devdocs.git"
},
"author": "James Calcaben",
"license": "OSL-3.0",
"bugs": {
"url": "https://github.com/magento-research/pwa-devdocs/issues"
},
"homepage": "https://github.com/magento-research/pwa-devdocs#readme"
}