forked from mozilla/protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.38 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
{
"name": "protocol",
"version": "19.2.0",
"private": true,
"author": "Mozilla",
"description": "A design system for Mozilla's websites.",
"homepage": "https://github.com/mozilla/protocol",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/protocol.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build-docs": "npm ci && npm run lint && webpack --config webpack.docs.static.config.js --mode production && webpack --config webpack.docs.build.config.js --mode production && fractal build",
"build-package": "npm ci && npm run lint && webpack --config webpack.package.static.config.js --mode production && webpack --config webpack.package.build.config.js --mode production",
"lint": "npm run lint-js && npm run lint-css",
"lint-css": "npx stylelint \"**/*.scss\"",
"lint-js": "npx eslint .",
"prepublishOnly": "npm run build-package",
"start": "ENV=development fractal start --sync",
"pretest": "npm run lint && npm run test-build",
"test-build": "webpack --config webpack.test.config.js --mode=development",
"test": "npx jasmine-browser-runner runSpecs --config=tests/jasmine-browser.json && npx jasmine-browser-runner runSpecs --browser=chrome --config=tests/jasmine-browser.json",
"webpack": "npm run lint && webpack --config webpack.docs.static.config.js --mode development && webpack --config webpack.docs.build.config.js --watch --mode development"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@frctl/fractal": "^1.5.15",
"@frctl/mandelbrot": "^1.10.3",
"@frctl/nunjucks": "^2.0.15",
"@mozilla-protocol/assets": "^5.3.0",
"@mozilla-protocol/tokens": "^5.0.5",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss-scss": "^4.0.9",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"devDependencies": {
"eslint": "^9.6.0",
"jasmine-browser-runner": "^2.5.0",
"jasmine-core": "^5.1.2",
"sinon": "^18.0.0",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.0.0"
},
"browserslist": [
"defaults",
"IE 8"
]
}