-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.01 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
{
"name": "greenwood-starter-presentation",
"version": "0.8.1",
"description": "A Greenwood plugin and general purpose starter kit for creating slide decks and presentations from markdown.",
"main": "index.js",
"type": "module",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/greenwood-starter-presentation.git"
},
"keywords": [
"Greenwood",
"Slide Deck",
"presentation",
"slides",
"HTML",
"CSS",
"markdown"
],
"author": "Owen Buckley <[email protected]>",
"license": "ISC",
"scripts": {
"clean": "rimraf public .greenwood/",
"build:win": "npm run build:pre-win && greenwood build",
"build": "npm run build:pre && greenwood build",
"build:pre": "mkdir -pv ./node_modules/greenwood-starter-presentation/dist && rsync -rv --exclude 'pages/' ./src/ ./node_modules/greenwood-starter-presentation/dist",
"build:pre-win": "rimraf node_modules\\greenwood-starter-presentation\\dist && mkdir node_modules\\greenwood-starter-presentation\\dist && xcopy src node_modules\\greenwood-starter-presentation\\dist\\ /e",
"dev": "greenwood develop",
"dist": "rsync -rv --exclude 'pages/' src/ dist",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint \"*.js\" \"./src/**/*.js\"",
"lint:css": "stylelint \"./src/**/*.js\", \"./src/**/*.css\"",
"prepublishOnly": "rm -rf dist/ && mkdir dist/ && npm run dist",
"serve": "npm run build:pre && greenwood build && greenwood serve",
"serve:win": "npm run build:pre-win && greenwood build && greenwood serve",
"start": "npm run develop"
},
"peerDependencies": {
"@greenwood/cli": "~0.30.0"
},
"dependencies": {
"@greenwood/plugin-import-raw": "~0.30.0"
},
"devDependencies": {
"@greenwood/cli": "~0.30.0",
"@greenwood/plugin-import-raw": "~0.30.0",
"eslint": "^8.4.0",
"rimraf": "^3.0.2",
"stylelint": "^13.12.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0"
}
}