-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
132 lines (132 loc) · 4.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "uswds",
"version": "2.7.0",
"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",
"style": "dist/css/uswds.min.css",
"sass": "src/stylesheets/uswds.scss",
"mocha": {
"config": "spec/.mocharc.json"
},
"scripts": {
"build": "gulp build",
"build:css": "gulp sass",
"build:js": "gulp javascript",
"cover": "nyc --reporter=lcov --config config/nycrc.yml gulp cover",
"format-tokens": "node ./src/utils/style-format.js --file './src/data/colors' --output './src/stylesheets/core/system-tokens'",
"federalist": "npm install && gulp build && fractal build",
"lint": "eslint src/js/**/*.js spec/**/*.js",
"mocha": "mocha",
"prepare": "gulp build",
"preversion": "npm test",
"release": "gulp release",
"spec": "npm run mocha -- 'spec/**/*.spec.js'",
"start": "fractal start --sync & npm run watch",
"test": "snyk test && gulp eslint && gulp typecheck && gulp stylelint && gulp test && gulp regression",
"test:ci": "gulp eslint && gulp typecheck && gulp stylelint && gulp test && gulp regression",
"test:unit": "gulp test",
"test:visual": "node ./spec/visual-regression-tester.js test",
"test:visual:update": " node ./spec/visual-regression-tester.js test --updateGolden",
"version": "gulp build release",
"watch": "NODE_ENV=development nswatch"
},
"watch": {
"src/stylesheets/**/*.scss": "build:css",
"src/js/**/*.js": "build:js"
},
"repository": {
"type": "git",
"url": "https://github.com/uswds/uswds.git"
},
"author": "18F",
"contributors": [
"Shawn Allen <[email protected]>",
"Maya Benari <[email protected]>",
"Adam Biagianti <[email protected]>",
"John Donmoyer <[email protected]>",
"Julia Elman <[email protected]>",
"Brian Hurst <[email protected]>",
"Jeremia Kimelman <[email protected]>",
"Roger Steve Ruiz <[email protected]>",
"Marco Segreto <[email protected]>",
"Atul Varma <[email protected]>",
"Dan O. Williams <[email protected]>",
"Sara D. Cope <[email protected]>",
"Stephanie Green <[email protected]"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/uswds/uswds/issues"
},
"homepage": "https://github.com/uswds/uswds#readme",
"dependencies": {
"@types/node": "^13.9.1",
"classlist-polyfill": "^1.0.3",
"del": "^5.1.0",
"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": "^15.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.8.7",
"@frctl/fractal": "^1.2.1",
"@frctl/nunjucks": "^2.0.1",
"ansi-colors": "^4.1.1",
"autoprefixer": "^9.7.4",
"axe-core": "^3.5.2",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"chrome-launcher": "^0.13.2",
"chrome-remote-interface": "^0.28.1",
"cross-spawn": "^7.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-eslint": "^5.0.0",
"gulp-filter": "^6.0.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-spawn-mocha": "^6.0.0",
"gulp-stylelint": "^13.0.0",
"gulp-uglify": "^3.0.0",
"handlebars": "^4.7.6",
"handlebars-helpers": "^0.10.0",
"jsdom": "^16.2.1",
"jsdom-global": "^3.0.2",
"mocha": "^7.1.2",
"node-notifier": "^6.0.0",
"normalize.css": "^8.0.1",
"nswatch": "^0.2.0",
"nyc": "^15.0.0",
"postcss-csso": "^4.0.0",
"postcss-discard-comments": "^4.0.2",
"prettier": "^1.19.1",
"resemblejs": "^3.2.4",
"sass": "^1.26.3",
"sinon": "^7.5.0",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-prettier": "^1.1.2",
"stylelint-scss": "^3.15.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}