This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.93 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
{
"name": "@nrk/core-components",
"homepage": "https://static.nrk.no/core-components/latest/",
"author": "NRK <[email protected]> (https://www.nrk.no/)",
"version": "10.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/core-components.git"
},
"scripts": {
"build": "rollup --config && npx -p typescript tsc",
"install": "node -r esm bin/index.js --install",
"outdated": "node -r esm bin/index.js --outdated",
"publish:preminor": "node -r esm bin/index.js --publish=preminor",
"publish:prepatch": "node -r esm bin/index.js --publish=prepatch",
"publish:patch": "node -r esm bin/index.js --publish=patch",
"publish:minor": "node -r esm bin/index.js --publish=minor",
"publish:major": "node -r esm bin/index.js --publish=major",
"start": "rollup --config --watch",
"static-publish": "npm run build && static-publish --directory=packages --account=nrk-core --latest --major",
"test": "npm run lint && npm run build && npx playwright test",
"test-remote": "npm run build && npm run test-remote-run && npm run lint",
"test-remote-run": "export NODE_ENV=test-remote; npm run protractor",
"test-server": "npm run build && http-server ./packages -p 10003",
"lint": "standard -v"
},
"devDependencies": {
"@babel/core": "7.23.7",
"@babel/preset-env": "7.22.20",
"@nrk/custom-element-to-react": "1.1.1",
"@playwright/test": "1.38.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.5",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@types/node": "20.10.6",
"dotenv": "16.3.1",
"esm": "3.2.25",
"fast-glob": "3.3.1",
"http-server": "14.1.1",
"rollup": "2.79.1",
"rollup-plugin-serve": "2.0.2",
"rollup-plugin-terser": "7.0.2",
"standard": "17.1.0",
"typescript": "5.2.2"
},
"standard": {
"globals": [
"HTMLElement"
]
}
}