-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.88 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
{
"name": "design-manual",
"version": "1.0.7",
"description": "Lightweight Design System Generator",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"precommit": "pretty-quick --staged",
"prepublishOnly": "node docs/build.js -q",
"template-js-browserify": "browserify template/scripts/index -t uglifyify",
"template-css-sass": "node-sass template/styles/all.scss | cleancss",
"template-js": "npm run template-js-browserify -- -o httpdocs/app.min.js",
"template-css": "npm run template-css-sass -- -o httpdocs/all.min.css",
"template-html": "jade template/templates/components.pug -o httpdocs",
"watch-js": "watchify template/scripts/index.js -o examples/httpdocs/app.min.js",
"docs": "node docs/build.js -q",
"test": "ava test/**/*/test*.js --serial --verbose",
"test-config": "ava test/config/*.js --serial",
"test-validate": "ava test/config/test-validate.js --serial",
"test-defaults": "ava test/defaults/test.js --serial",
"test-gulp": "ava test/gulp/test.js --serial",
"test-interrupt": "ava test/interrupt/test.js --serial",
"test-prerender": "ava test/prerender/test.js --serial",
"test-puppeteer": "ava test/puppeteer/test.js --serial",
"test-render-css": "ava test/render-css/test.js --serial",
"test-render-pages": "ava test/render-pages/test.js --serial",
"test-autofill": "ava test/autofill/test.js --serial"
},
"author": "Eight Media",
"license": "ISC",
"devDependencies": {
"ava": "^3.15.0",
"collect-components": "^1.2.2",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gather-components": "^0.2.0",
"gulp": "^4.0.2",
"is-there": "^4.5.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"async": "^3.2.0",
"autoprefixer": "^10.2.3",
"clean-css": "^4.2.3",
"cssmin": "^0.4.3",
"death": "^1.1.0",
"deep-equal": "^2.0.5",
"delegate-events": "^1.1.1",
"events": "^3.2.0",
"finalhandler": "^1.1.2",
"html": "^1.0.0",
"husky": "^4.3.8",
"interactjs": "^1.10.2",
"killable": "^1.0.1",
"marked": "^1.2.8",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"pug": "^3.0.0",
"puppeteer": "^5.5.0",
"recursive-readdir": "^2.2.2",
"serve-static": "^1.14.1",
"slug": "^4.0.2",
"to-sentence-case": "^1.0.0",
"vanilla-lazyload": "^17.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aratramba/design-manual.git"
},
"keywords": [
"styleguide",
"design system",
"component library",
"pattern library"
],
"bugs": {
"url": "https://github.com/aratramba/design-manual/issues"
},
"homepage": "https://github.com/aratramba/design-manual#readme"
}