-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "frameless",
"version": "0.0.1",
"author": "Robbert Broersma <mail@robbertbroersma.nl>",
"description": "Frameless",
"homepage": "http://frameless.io/",
"maintainers": [
{
"name": "Robbert Broersma",
"url": "http://robbertbroersma.nl/"
}
],
"contributors": [
{
"name": "Robbert Broersma",
"url": "http://robbertbroersma.nl/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wesaynih/frameless"
},
"bugs": {
"url": "https://github.com/wesaynih/frameless/issues"
},
"keywords": [
"frameless"
],
"license": "SEE LICENSE IN license.txt",
"private": true,
"engines": {
"node": ">=4.2.0"
},
"dependencies": {},
"devDependencies": {
"google-closure-compiler": ">=20160315",
"gulp": "^3.9",
"gulp-csslint": "^0.3",
"gulp-eslint": "^2.0",
"gulp-html": "^0.4",
"gulp-lintspaces": "^0.4",
"js-yaml": "^3.6",
"jsdom": "^9.0",
"lodash": "^4.11",
"media-type": "^0.3",
"mime-db": "^1.23",
"nih-externs": "git://github.com/wesaynih/externs.git",
"package-json-validator": "^0.6",
"sanitize-filename": "^1.6"
},
"scripts": {
"test": "npm run lint",
"lint": "gulp lint:chmod lint:editorconfig lint:eslint lint:filename lint:html lint:json lint:package-json lint:yaml && npm run lint:java-dependent-detection",
"lint:filename": "gulp lint:filename",
"lint:java-dependent": "gulp lint:closure-compiler lint:html-validator",
"lint:java-dependent-detection": "if which java >/dev/null 2>&1; then npm run lint:java-dependent; else true; fi",
"lint:package-json": "gulp lint:package-json",
"lint:yaml": "gulp lint:yaml",
"postinstall": ".hooks/init.sh"
}
}