-
-
Notifications
You must be signed in to change notification settings - Fork 362
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "modern-normalize",
"version": "3.0.1",
"description": "Normalize browsers' default style",
"license": "MIT",
"repository": "sindresorhus/modern-normalize",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"main": "modern-normalize.css",
"style": "modern-normalize.css",
"sideEffects": true,
"engines": {
"node": ">=6"
},
"scripts": {
"test": "npm run test:stylelint",
"test:all": "npm run test:stylelint && npm run test:chrome && npm run test:firefox && npm run test:safari",
"test:stylelint": "stylelint modern-normalize.css",
"test:chrome": "testcafe chrome:headless test/acceptance/chrome --app \"http-server . --silent\"",
"test:firefox": "testcafe firefox:headless test/acceptance/firefox --app \"http-server . --silent\"",
"test:safari": "testcafe safari test/acceptance/safari --app \"http-server . --silent\"",
"version": "replace-in-files --regex='v\\d+\\.\\d+\\.\\d+' --replacement=v$npm_package_version modern-normalize.css && git add ."
},
"files": [
"modern-normalize.css"
],
"keywords": [
"normalize",
"css",
"reset",
"browser",
"style"
],
"devDependencies": {
"http-server": "^14.1.1",
"replace-in-files-cli": "^3.0.0",
"stylelint": "^16.8.1",
"stylelint-config-xo": "^1.0.2",
"testcafe": "^3.6.2"
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"property-no-vendor-prefix": null
}
}
}