-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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": "nature-graphic-svelte-components",
"version": "0.0.02",
"description": "Collection of svelte components to build nature infographics.",
"svelte": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"prettier": "prettier --write --plugin-search-dir=. src/components/**/*",
"stylelint": "stylelint --fix src/components/**/* static/css/**/*.css",
"eslint": "eslint 'src/components/**/*.{js,svelte}'",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -s ./static",
"build-storybook": "build-storybook -s ./static -o docs"
},
"author": "chris-creditdesign",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"@storybook/addon-docs": "^6.0.26",
"@storybook/svelte": "^6.0.26",
"babel-loader": "^8.1.0",
"creditdesign-svelte-components": "^0.1.1",
"d3-format": "^2.0.0",
"d3-scale": "^3.2.3",
"d3-shape": "^2.0.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-svelte3": "^2.7.3",
"prettier": "^2.0.5",
"prettier-plugin-svelte": "^1.1.0",
"rollup-plugin-svelte": "^5.2.2",
"stylelint": "^13.6.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"svelte": "^3.23.2",
"svelte-loader": "^2.13.6"
},
"keywords": [
"svelte"
],
"files": [
"src",
"dist",
"static/css"
]
}