-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "fluidms",
"version": "1.0.0",
"description": "A font-size system based on Modular Scale and Fluid Typography built with Sass and CSS custom properties.",
"repository": {
"type": "git",
"url": "git+https://github.com/csshugs/FluidMS.git"
},
"scripts": {
"sassdoc": "rimraf dist/ && sassdoc src -d dist",
"start": "npm-run-all -p -c server sass:watch",
"server": "ws --directory test/",
"sass:compile": "sass test/style.scss test/style.css",
"sass:watch": "npm-run-all sass:compile \"sass:compile -- -w\"",
"release": "standard-version -t ''",
"prepare": "husky install"
},
"keywords": [
"CSS",
"Modular Scale",
"Sass",
"Fluid Typography",
"Custom properties"
],
"author": "Dennis Heibült",
"contributors": [
"Florian Uhlig"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/csshugs/FluidMS/issues"
},
"homepage": "https://github.com/csshugs/FluidMS#readme",
"devDependencies": {
"@commitlint/cli": "17.4.3",
"@commitlint/config-conventional": "17.4.3",
"@commitlint/travis-cli": "17.4.3",
"husky": "8.0.3",
"local-web-server": "5.3.0",
"npm-run-all": "4.1.5",
"rimraf": "4.1.2",
"sass": "1.58.1",
"sassdoc": "2.7.4",
"standard-version": "9.5.0"
},
"dependencies": {
"npm": "9.4.2"
}
}