-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "@canonical/global-nav",
"version": "3.6.4",
"description": "A script and stylesheet that displays the Canonical global nav across the top of a site",
"main": "dist/module.js",
"iife": "dist/global-nav.js",
"scripts": {
"build": "rm -rf dist && rollup -c",
"serve": "http-server -p 8300",
"test": "yarn run lint",
"lint": "yarn sass-lint src/**/*.scss -v && yarn eslint src/js && prettier **/* --check",
"prepublishonly": "npm run build",
"watch": "rollup -c -w",
"clean": "rm -rf node_modules && rm -rf dist",
"start": "yarn run build && yarn run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canonical-web-and-design/global-nav.git"
},
"author": "Anthony Dillon",
"license": "ISC",
"bugs": {
"url": "https://github.com/canonical-web-and-design/global-nav/issues"
},
"homepage": "https://github.com/canonical-web-and-design/global-nav#readme",
"devDependencies": {
"@babel/core": "7.24.0",
"@babel/preset-env": "7.24.0",
"autoprefixer": "10.4.18",
"cssnano": "5.1.15",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"http-server": "^0.11.1i",
"postcss": "8.4.31",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sass": "1.12.21",
"rollup-plugin-terser": "7.0.2",
"sass-lint": "1.13.1"
},
"dependencies": {
"vanilla-framework": "4.9.0"
}
}