forked from 18F/fs-fork-uswds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "uswds",
"version": "1.4.5",
"description": "Open source UI components and visual style guide for U.S. government websites",
"engines": {
"node": ">= 4"
},
"main": "dist/js/uswds.min.js",
"jsnext:main": "src/js/start.js",
"scripts": {
"build": "gulp build",
"build:css": "gulp sass",
"build:js": "gulp javascript",
"cover": "istanbul cover --config config/istanbul.yml gulp cover",
"cracks": "cracks --paths package.json,spec",
"federalist": "npm install --only=dev && gulp build && fractal build",
"mocha": "mocha --opts spec/mocha.opts",
"prepublish": "gulp build release",
"prepare": "gulp build release",
"preversion": "npm test",
"release": "gulp release",
"spec": "npm run mocha -- 'spec/**/*.spec.js'",
"start": "fractal start --sync",
"test": "gulp eslint typecheck stylelint test",
"version": "npm run prepublish",
"watch": "nswatch"
},
"watch": {
"src/stylesheets/{components,core,elements,}/*.scss": "build:css",
"src/js/**/*.js": "build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uswds/uswds.git"
},
"author": "18F",
"contributors": [
"Maya Benari <maya.ben-ari@gsa.gov>",
"Marco Segreto <marco.segreto@gsa.gov>",
"Jeremia Kimelman <jeremia.kimelman@gsa.gov>",
"Roger Steve Ruiz <roger.ruiz@gsa.gov>",
"Julia Elman <julia.elman@gsa.gov>",
"Shawn Allen <shawn.allen@gsa.gov>",
"John Donmoyer <john.donmoyer@gsa.gov>"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/uswds/uswds/issues"
},
"homepage": "https://github.com/uswds/uswds#readme",
"dependencies": {
"@types/node": "^8.5.5",
"array-filter": "^1.0.0",
"array-foreach": "^1.0.2",
"browserify": "^13.0.0",
"classlist-polyfill": "^1.0.3",
"domready": "^1.0.8",
"elem-dataset": "^1.1.1",
"lodash.debounce": "^4.0.7",
"object-assign": "^4.1.1",
"receptor": "^1.0.0",
"resolve-id-refs": "^0.1.0",
"typescript": "^2.4.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"@18f/stylelint-rules": "^1.2.0",
"@frctl/fractal": "^1.1.7",
"@frctl/mandelbrot": "^1.2.0",
"@frctl/nunjucks": "^1.0.3",
"axe-core": "^2.6.1",
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"bourbon": "4.2.7",
"bourbon-neat": "https://github.com/thoughtbot/neat/archive/neat-1.8.0-node-sass.tar.gz",
"chalk": "^2.0.1",
"chrome-launcher": "^0.3.2",
"chrome-remote-interface": "^0.24.2",
"cracks": "^3.1.2",
"cross-spawn": "^2.1.5",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-clean": "^0.3.1",
"gulp-cli": "^1.4.0",
"gulp-cssnano": "^2.1.2",
"gulp-eslint": "^1.1.1",
"gulp-filter": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^2.1.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-spawn-mocha": "^3.3.1",
"gulp-stylelint": "^2.0.2",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"gulp-zip": "^3.1.0",
"istanbul": "^0.4.5",
"jquery": "^3.2.1",
"jsdom": "^9.0.0",
"jsdom-global": "^2.1.0",
"mocha": "^3.5.3",
"node-notifier": "^4.6.0",
"node-sass": "^3.4.2",
"normalize.css": "^3.0.3",
"nswatch": "^0.2.0",
"resemblejs": "^2.2.4",
"run-sequence": "^1.1.5",
"should": "^11.2.1",
"sinon": "^2.3.8",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.1.2"
}
}