-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.85 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "svea",
"version": "1.0.3",
"description": "Component library",
"main": "dist/svea.js",
"module": "dist/svea.module.js",
"svelte": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AronssonFredrik/svea.git"
},
"keywords": [
"component",
"library",
"svelte"
],
"author": "Fredrik Aronsson",
"license": "ISC",
"bugs": {
"url": "https://github.com/AronssonFredrik/svea/issues"
},
"homepage": "https://github.com/AronssonFredrik/svea#readme",
"files": [
"dist",
"src"
],
"peerDependencies": {
"svelte": "^3.4.4"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@storybook/addon-a11y": "^5.2.5",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addon-notes": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/svelte": "^5.2.5",
"@testing-library/dom": "^6.8.1",
"@testing-library/jest-dom": "^4.1.2",
"@testing-library/svelte": "^1.9.0",
"autoprefixer": "^9.7.0",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.7",
"enzyme": "^3.10.0",
"generate-changelog": "^1.8.0",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"jest-transform-svelte": "^2.1.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.12.0",
"rollup-plugin-analyzer": "^3.2.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^4.0.4",
"sirv-cli": "^0.4.5",
"svelte": "^3.12.1",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "^3.2.0-alpha.2"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"test": "jest src",
"test:watch": "npm run test -- --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"pkg:dev": "npm run build && npm publish --tag dev",
"pkg:prod": "npm run build && npm publish --tag",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook && gh-pages -d storybook-static"
}
}