forked from uswds/uswds-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (73 loc) · 2.43 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
{
"name": "uswds-docs",
"version": "0.1.0",
"description": "Website and documentation on using the Draft U.S. Web Design Standards.",
"scripts": {
"build": "bundle && gulp build && bundle exec jekyll build",
"build-css": "gulp sass && bundle exec jekyll build",
"build-js": "gulp javascript && bundle exec jekyll build",
"build-img": "gulp images && bundle exec jekyll build",
"build-fonts": "gulp fonts && bundle exec jekyll build",
"build-html": "gulp html && bundle exec jekyll build",
"clean": "gulp clean-assets",
"lint": "gulp eslint scss-lint",
"prestart": "bundle && gulp build",
"start": "bundle exec jekyll serve",
"test": "npm run lint",
"watch": "nswatch"
},
"watch": {
"./css/**/*.scss": ["build-css"],
"./img": ["build-img"],
"./js/**/*.js": ["build-js"],
"./node_modules/uswds/src/stylesheets": ["build-css"],
"./node_modules/uswds/src/fonts": ["build-fonts"],
"./node_modules/uswds/src/html": ["build-html"],
"./node_modules/uswds/src/img": ["build-img"],
"./node_modules/uswds/src/js": ["build-js"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/18F/web-design-standards-docs.git"
},
"author": "18F",
"contributors": [
"Erica Deahl <[email protected]>",
"Jeremia Kimelman <[email protected]>",
"Julia Elman <[email protected]>",
"Katherine Garklavs <[email protected]>",
"Marco Segreto <[email protected]>",
"Maya Benari <[email protected]>",
"Roger Steve Ruiz <[email protected]>",
"Yoz Grahame <[email protected]>"
],
"license": "SEE LICENSE in LICENSE.md",
"bugs": {
"url": "https://github.com/18F/web-design-standards-docs/issues"
},
"homepage": "https://github.com/18F/web-design-standards-docs#readme",
"devDependencies": {
"browserify": "^13.0.0",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.6.0",
"gulp-eslint": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-scss-lint": "^0.3.9",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"jquery": "^2.2.0",
"merge-stream": "^1.0.0",
"node-notifier": "^4.6.0",
"normalize.css": "^3.0.3",
"nswatch": "^0.2.0",
"politespace": "^0.1.4",
"prismjs": "^1.5.1",
"run-sequence": "^1.1.5",
"uswds": "~0.12.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}