-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "toml-resume",
"version": "1.0.6",
"description": "use Toml file and command line tools to build your resume",
"author": "Matt Harris",
"keywords": [
"resume",
"document-tools",
"toml",
"templating"
],
"repository": {
"type": "git",
"url": "https://github.com/charrismatic/toml-resume.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/charrismatic/toml-resume/issues"
},
"homepage": "https://charrismatic.github.io/toml-resume",
"scripts": {
"start": "npm run sync && npm run templates:dev & npm run styles:dev & npm run serve",
"build": "./run/build",
"clean": "./run/clean",
"deploy": "./run/deploy",
"sync": "./run/sync-assets",
"serve": "./run/serve",
"styles": "./run/styles",
"styles:dev": "./run/styles-dev",
"styles:lint": "./run/styles-lint",
"templates": "./run/templates",
"templates:dev": "./run/templates-dev",
"meta:bump": "npm version patch -m \"Increasing npm package version v%s\"",
"meta:release": "npm version patch -m \"Release: %s\"",
"env": "env | sort | grep npm"
},
"dependencies": {
"browser-sync": "^2.26.13",
"handlebars": "^4.7.6",
"minimist": "^1.2.5",
"node-sass": "^4.14.1",
"nodemon": "^2.0.6",
"toml": "^3.0.0"
}
}