-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 911 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
31
{
"name": "crypto-presentation",
"version": "0.0.1",
"dependencies": {
"enigma-js": "1.0.0",
"reveal.js": "3.5.0",
"lodash": "4.17.4",
"node-sass": "4.6.0",
"aes-js": "3.1.0"
},
"devDependencies": {
"browserify": "14.5.0",
"watchify": "3.9.0",
"minifyify": "7.3.5",
"pug": "2.0.0-rc.4",
"pug-cli": "1.0.0-alpha6",
"jest": "21.2.1",
"nodemon": "1.12.1"
},
"scripts": {
"build:js": "browserify src/js/index.js > dist/index.js",
"build:pug": "pug src/index.pug --out dist",
"build:copy": "rm -rf dist/img && cp -R src/img dist/img",
"build:css": "node-sass src/scss/index.scss dist/css/index.css",
"build": "npm run build:js && npm run build:pug && npm run build:copy && npm run build:css",
"test": "jest",
"watch": "nodemon --config nodemon-config.json"
},
"author": "Russ Taylor <[email protected]>",
"license": "MIT"
}