forked from nrkno/core-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.04 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
{
"name": "@nrk/core-icons",
"homepage": "https://static.nrk.no/core-icons/latest/",
"description": "The official icons for NRK.",
"author": "NRK <[email protected]> (https://www.nrk.no/)",
"version": "5.0.2",
"license": "MIT",
"main": "core-icons.js",
"module": "core-icons.mjs",
"scripts": {
"build": "node bin/build.js",
"lint": "standard",
"publish:patch": "npm version patch -m 'Release patch %s' && npm run push",
"publish:minor": "npm version minor -m 'Release minor %s' && npm run push",
"publish:major": "npm version major -m 'Release major %s' && npm run push",
"push": "npm run build && git push && git push --tags && npm publish",
"start": "npm run build && http-server lib -p 10001 -o -c-1",
"static-publish": "npm run build && static-publish --directory=lib --account=nrk-core --latest --major"
},
"devDependencies": {
"http-server": "0.11.1",
"react": "16.6.0",
"standard": "12.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrkno/core-icons.git"
}
}