-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.15 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.15 KB
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
{
"name": "miri",
"version": "1.0.0",
"main": "dato.config.js",
"dependencies": {
"datocms-client": "^0.3.15"
},
"devDependencies": {},
"scripts": {
"css:build": "scss-cli --source-map --output-style compressed './static-src/src-assets/sass/**/*.{scss,sass}' --glob -o static/assets/css",
"postcss:build": "autoprefixer -b 'last 2 versions' static/src-assets/css/*.css",
"css:watch": "onchange './static-src/assets/src-sass/' -- npm run css:build",
"js:build": "browserify static-src/assets/js/index.js -o static/assets/js/bundle.js",
"js:watch": "watchify static-src/assets/src-js/index.js -o static/assets/js/bundle.js",
"build": "npm run css:build && npm run js:build",
"prewatch": "npm run build",
"watch": "parallelshell 'npm run css:watch' 'npm run js:watch'",
"start": "npm run watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nachlib/h2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nachlib/h2/issues"
},
"homepage": "https://github.com/nachlib/h2#readme",
"keywords": [],
"description": ""
}