forked from Viewtiful/fs-dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fs-dialog",
"version": "5.4.0",
"description": "An accessible standard dialog for FamilySearch.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fs-webdev/fs-dialog.git"
},
"author": {
"name": "FamilySearch",
"url": "https://familysearch.org/"
},
"license": "SEE LICENSE IN LICENSE.txt",
"private": false,
"bugs": {
"url": "https://github.com/fs-webdev/fs-dialog/issues"
},
"homepage": "https://github.com/fs-webdev/fs-dialog#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"css-slam": "^2.0.2",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-htmlmin": "^3.0.0",
"gulp-if": "^2.0.2",
"gulp-replace": "^0.6.1",
"gulp-uglify": "^3.0.0",
"polymer-build": "^2.1.1",
"eslint-config-frontier": "github:fs-webdev/eslint-config-frontier",
"eslint-config-tree": "github:fs-webdev/eslint-config-tree#semver:^1",
"fs-common-build-scripts": "github:fs-webdev/fs-common-build-scripts#semver:^1",
"husky": "^2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"pre-push": "npm run lint && CI=true npm run test"
}
},
"lint-staged": {
"*.{html,js,json}": [
"suppress-exit-code npx eslint '**/*.html' '**/*.js' '**/*.json' --fix",
"suppress-exit-code git add"
]
},
"scripts": {
"preinstall": "git config --global url.https://github.com/.insteadOf git://github.com/",
"postinstall": "bower install",
"lint": "eslint '**/*.html' '**/*.js' '**/*.json' && stylelint '**/*.html' '**/*.css'",
"lint:fix": "eslint '**/*.html' '**/*.js' '**/*.json' --fix && stylelint '**/*.html' '**/*.css' --fix",
"lint:staged": "gulp && node node_modules/fs-common-build-scripts/bin/pre_commit_checks.js && lint-staged",
"standard": "npm run lint",
"standard-fix": "npm run lint:fix",
"test": "wct --skip-plugin sauce",
"test-p": "wct --skip-plugin sauce -p",
"test-s": "wct --configFile wct.conf.windows.json --skip-plugin local && wct --configFile wct.conf.json --skip-plugin local"
},
"stylelint": {
"about": "https://github.com/stylelint/stylelint/blob/master/docs/user-guide/rules.md#possible-errors",
"extends": "stylelint-config-standard",
"ignoreFiles": [
"**/bower_components/**.*",
"**/node_modules/**.*",
"**/reports/**.*",
"**/test/**.*"
],
"rules": {
"indentation": 2,
"media-feature-colon-space-after": null,
"selector-type-no-unknown": null,
"unit-whitelist": [
"%",
"deg",
"em",
"px",
"rem",
"s",
"vh",
"vw"
]
}
}
}