-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "@fluid-project/looseleaf",
"version": "1.6.1",
"description": "Sketchy CSS framework for prototyping.",
"main": "dist/style.min.css",
"scripts": {
"build": "npm-run-all clean build:*",
"build:css": "postcss src/css/style.css -o dist/style.min.css",
"build:fractal": "fractal build",
"clean": "rimraf build dist/*.css",
"lint": "run-s lint:*",
"lint:js": "eslint *.js",
"lint:css": "stylelint src/css/**/*.css",
"prerelease": "npm run build:css",
"start": "npm-run-all clean --parallel start:*",
"start:css": "postcss src/css/style.css -o dist/style.min.css --watch",
"start:fractal": "fractal start --watch",
"test": "npm run lint",
"postinstall": "is-ci || husky install",
"pre-commit": "lint-staged",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fluid-project/looseleaf.git"
},
"keywords": [
"css",
"prototype",
"sketchy"
],
"author": "OCAD University",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fluid-project/looseleaf/issues"
},
"homepage": "https://github.com/fluid-project/looseleaf#readme",
"lint-staged": {
"*.css": "stylelint",
"*.js": "eslint"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@frctl/fractal": "1.5.11",
"@frctl/nunjucks": "2.0.13",
"autoprefixer": "10.3.3",
"cssnano": "5.0.8",
"doxray": "^0.10.1",
"eslint": "7.32.0",
"eslint-config-fluid": "2.0.0",
"faker": "5.5.3",
"husky": "7.0.2",
"is-ci": "3.0.0",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"pinst": "2.1.6",
"postcss": "8.3.6",
"postcss-cli": "8.3.1",
"postcss-easy-import": "3.0.0",
"rimraf": "3.0.2",
"stylelint-config-fluid": "0.2.1",
"stylelint-use-logical-spec": "3.2.2"
},
"dependencies": {
"modern-css-reset": "^1.4.0"
}
}