-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "openfisca.org",
"version": "1.0.0",
"description": "The public-facing website of OpenFisca for an international audience.",
"license": "AGPL-3.0",
"engines": {
"node": ">10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openfisca/openfisca.org.git"
},
"bugs": {
"url": "https://github.com/openfisca/openfisca.org/issues"
},
"homepage": "https://github.com/openfisca/openfisca.org#readme",
"type": "module",
"scripts": {
"lint:css": "stylelint themes/OpenFisca-2022/assets/css/**/*.css",
"lint:js": "eslint publish.js themes/OpenFisca-2022/assets/js/ test/**/*.js test/*.js",
"publish": "node publish.js",
"test": "npm run lint:js && npm run lint:css && npm run test:showcase && npm run test:packages",
"test:showcase": "mocha test/showcase/validate.js",
"test:packages": "mocha test/packages/validate.js"
},
"dependencies": {
"lucide": "^0.100.0",
"minireset.css": "^0.0.7",
"postcss": "^8.4.14",
"postcss-cli": "^10.0.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^14.1.0",
"postcss-mixins": "^9.0.3",
"postcss-preset-env": "^7.7.2"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-google": "^0.14.0",
"expect.js": "^0.3.1",
"gh-pages": "^4.0.0",
"image-size": "^1.0.2",
"iso-3166": "^4.1.0",
"mocha": "^10.2.0",
"spdx-license-ids": "^3.0.12",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"yaml": "^2.2.1",
"yaml-schema-validator": "^1.2.3"
}
}