-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.48 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
{
"name": "use-the-platform-talk",
"version": "1.0.0",
"description": "Talk: Use The Platform",
"private": true,
"author": "Eric Heikes <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/eheikes/use-the-platform-talk",
"repository": {
"type": "git",
"url": "https://github.com/eheikes/use-the-platform-talk.git"
},
"scripts": {
"build": "run-p copy:assets copy:flowtime copy:talk pug && npm run correct-eols",
"clean": "rimraf dist",
"copy:assets": "mkdirp dist/assets && cp -r assets/** dist/assets/",
"copy:favicon": "mkdirp dist && cp node_modules/Flowtime.js/favicon.ico dist/",
"copy:talk": "run-p copy:favicon copy:images copy:css",
"copy:css": "mkdirp dist/css && cp talk.css dist/css/talk.css",
"copy:flowtime": "mkdirp dist/css/modifiers dist/css/themes dist/js && cp -r node_modules/Flowtime.js/css/* dist/css/ && cp -r node_modules/Flowtime.js/js/*.js dist/js/",
"copy:images": "mkdirp dist/img && cp -r img/* dist/img/",
"correct-eols": "find dist/css dist/js -type f | xargs dos2unix",
"deploy": "gh-pages -d dist",
"pug": "mkdirp dist && pug index.pug -O '{\"pretty\": true}' --out dist",
"start": "http-server dist"
},
"dependencies": {},
"devDependencies": {
"Flowtime.js": "github:marcolago/flowtime.js#master",
"gh-pages": "^0.12.0",
"http-server": "^0.9.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.2",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^2.5.2"
}
}