-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.12 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.12 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
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
90
91
92
93
94
95
{
"name": "slims",
"version": "1.0.4",
"description": "Vanilla CSS framework",
"license": "MIT",
"repository": "scrum/slims",
"homepage": "https://scrum/slims#readme",
"bugs": "scrum/slims/issues",
"author": {
"name": "Ivan Demidov",
"email": "Scrum@list.ru",
"url": "https://twitter.com/Scrum_"
},
"main": "dist/css/slims.min.css",
"engines": {
"node": ">=8"
},
"scripts": {
"version": "conventional-changelog -i changelog.md -s -r 0 && git commit -am \"build: update changelog\"",
"test": "testcafe \"chrome:headless\" tests/e2e/*-test.js --app \"http-server ./ -s\"",
"test:ci": "npm run test:e2e",
"test:e2e": "npm run build && npm run testcafe",
"testcafe": "testcafe all tests/e2e/*-test.js --app \"http-server ./ -s\"",
"precommit": "clinton && lint-staged",
"commitmsg": "commitlint --extends=@commitlint/config-angular -e",
"prepare": "npm run build",
"build": "npm run css && npm run html",
"html": "rimraf docs/*.html && posthtml",
"css": "rimraf {docs,dist}/css/*.css && postcss -o dist/css/slims.min.css src/css/slims.css && cp -a dist/. docs/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "clinton",
"watch:docs": "chokidar src/docs/**/* -c \"npm run html\"",
"watch:css": "chokidar src/css/**/* -c \"npm run css\"",
"watch": "npm run watch:docs | npm run watch:css",
"server": "browser-sync start --server docs --files docs",
"dev": " npm run server | npm run watch"
},
"files": [
"dist/"
],
"keywords": [
"CSS",
"Vanilla",
"Framework"
],
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"autoprefixer": "^9.6.4",
"babel-eslint": "^10.0.3",
"browser-sync": "^2.26.7",
"chokidar-cli": "^2.0.0",
"clinton": "^0.14.0",
"conventional-changelog-cli": "^2.0.23",
"coveralls": "^3.0.6",
"eslint": "^6.5.1",
"eslint-config-xo": "^0.27.1",
"eslint-plugin-ava": "^9.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-xo": "^1.0.0",
"http-server": "^0.11.1",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"nyc": "^14.1.1",
"postcss-at-rules-variables": "0.1.8",
"postcss-calc": "^7.0.1",
"postcss-cli": "^6.1.3",
"postcss-conditionals": "^3.0.0-beta.0",
"postcss-csso": "^3.0.0",
"postcss-custom-properties": "^9.0.2",
"postcss-devtools": "^1.1.1",
"postcss-each": "^0.10.0",
"postcss-easy-import": "^3.0.0",
"postcss-extend": "^1.0.5",
"postcss-for": "^2.1.1",
"postcss-initial": "^3.0.1",
"postcss-mixins": "^6.2.2",
"postcss-nested": "^4.1.2",
"postcss-reduce-initial": "^4.0.3",
"postcss-sorting": "^5.0.1",
"posthtml": "^0.11.6",
"posthtml-cli": "0.5.1",
"posthtml-extend": "^0.3.0",
"posthtml-modules": "^0.4.2",
"posthtml-spaceless": "^0.0.3",
"rimraf": "^3.0.0",
"stylefmt": "^6.0.3",
"stylelint": "^11.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-csstree-validator": "^1.6.1",
"testcafe": "^1.5.0"
}
}