-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2 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
{
"name": "@nrk/core-docs",
"homepage": "https://static.nrk.no/core-docs/latest/",
"description": "Core documentation",
"author": "NRK <[email protected]> (https://www.nrk.no/)",
"version": "4.0.5",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rollup --config",
"publish:patch": "npm version patch -m 'Release patch %s'",
"publish:minor": "npm version minor -m 'Release minor %s'",
"publish:major": "npm version major -m 'Release major %s'",
"preversion": "npm run build && npm run test",
"postversion": "git push && git push --tags && npm publish",
"start": "rollup --config --watch",
"static-publish": "npm run build && static-publish --directory=lib --latest --major --account=nrk-core",
"test": "standard -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/core-docs.git"
},
"exports": {
"browser": {
"require": "./lib/core-docs.min.js",
"default": "./lib/core-docs.min.js"
}
},
"files": [
"lib/core-docs.js",
"lib/core-docs.min.js",
"lib/core-docs.min.js.map",
"lib/index.html",
"lib/readme.md"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "7.26.0",
"@nrk/core-tabs": "2.2.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "6.0.1",
"@rollup/plugin-terser": "0.4.4",
"autoprefixer": "10.4.20",
"postcss": "^8.4.49",
"rollup": "^4.25.0",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-serve": "3.0.0",
"sass": "1.80.6",
"standard": "17.1.2"
},
"dependencies": {
"@webcomponents/custom-elements": "1.6.0",
"core-js": "^3.39.0",
"highlight.js": "11.10.0",
"marked": "11.0.1",
"prop-types": "15.8.1",
"raf": "3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"browserslist": [
"last 1 version",
"> .1%",
"ie 9-11"
]
}