-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ad-insertion",
"version": "0.0.4",
"description": "A custon PHP application for The Kern Valley Sun.",
"keywords": [
"Kern Valley Sun",
"ads"
],
"author": {
"name": "Chris Zuber",
"email": "shgysk8zer0@gmail.com",
"url": "https://chriszuber.com"
},
"contributors": [],
"homepage": "http://www.kernvalleysun.com/",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/KVSun/ad-insertion.git"
},
"bugs": {
"url": "https://github.com/KVSun/ad-insertion/issues"
},
"engines": {
"php": ">=5.5",
"npm": ">=3.5"
},
"scripts": {
"build:css": "myth stylesheets/styles/import.css -c stylesheets/styles/styles.css",
"build:js": "webpack",
"build:icons": "php svgsprites.php",
"build:all": "npm run build:css && npm run build:js && npm run build:icons",
"lint:js": "eslint --ext .es6 .",
"lint:php": "php unit.php",
"update": "git submodule update --init --recursive && npm run build:all",
"test": "npm run lint:php && npm run lint:js",
"git:hooks": "cp .git/hooks/pre-commit.sample .git/hooks/pre-commit && echo #!/bin/sh> .git/hooks/post-merge && echo npm run update>> .git/hooks/post-merge",
"postinstall": "npm run git:hooks && npm run update"
},
"devDependencies": {
"babel-core": "^6.6.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.2.0",
"myth": "^1.5.0",
"svg-sprite-generator": "0.0.7",
"svgo": "^0.6.1",
"webpack": "^1.12.14"
}
}