-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "@objectpartners/revealjs-theme",
"version": "1.0.0",
"main": "revealjs-theme.css",
"repository": "[email protected]:DSchau/object-partners-revealjs-theme.git",
"author": "Dustin Schau <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "npm run clean && mkdirp dist",
"build": "npm run style",
"predeploy": "npm run build",
"deploy": "node build/copy-package-json.js",
"clean": "del-cli \"dist/**/*\"",
"sass": "node-sass src/revealjs-theme.scss > revealjs-theme.css --source-map true --output dist dist/revealjs-theme.css --include-path ./node_modules/reveal.js/css/theme/template",
"prestyle": "npm run sass",
"style": "postcss dist/revealjs-theme.css --replace",
"start": "lite-server",
"pretest": "npm run build",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "~6.7.6",
"cssnano": "~3.10.0",
"del-cli": "~0.2.1",
"jest": "^20.0.4",
"lite-server": "~2.2.2",
"mkdirp": "~0.5.1",
"mz": "^2.6.0",
"node-sass": "~4.5.0",
"postcss-assets": "~4.1.0",
"postcss-cli": "~3.0.0-beta",
"reveal.js": "~3.4.1"
}
}