-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
88 lines (88 loc) · 3.08 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
84
85
86
87
88
{
"name": "cocoen",
"version": "3.2.0",
"description": "Much like the caterpillar, your image will undergo a clear transformation with Cocoen. Making comparison really easy, it’s as straightforward way of seeing your images in a new light.",
"homepage": "https://github.com/koenoe/cocoen#readme",
"bugs": {
"url": "https://github.com/koenoe/cocoen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koenoe/cocoen.git"
},
"license": "MIT",
"author": "Koen Romers <info@koenromers.com>",
"main": "dist/cocoen.js",
"module": "dist/cocoen.esm.js",
"browser": "dist/cocoen.js",
"types": "dist/cocoen.d.ts",
"scripts": {
"dev": "npm run build-js--cjs--watch",
"dev-tdd": "npm run test--watch",
"format": "bash scripts/format.sh",
"lint": "run-p lint-es lint-ts lint-md",
"lint-es": "eslint --ext .js,.jsx,.ts,.tsx --format=pretty ./",
"lint-ts": "tsc",
"lint-md": "markdownlint '**/*.md'",
"test": "jest",
"test--coverage": "npm run test -- --coverage",
"test--watch": "npm run test -- --watch",
"build": "rimraf dist && run-p build-js build-dts",
"build--watch": "run-p build-js--watch build-dts--watch",
"build-js": "node scripts/build.js",
"build-js--watch": "node scripts/build.js --watch",
"build-dts": "dts-bundle-generator --config ./dts-bundle-generator.config.js",
"build-dts--watch": "tsc --watch --preserveWatchOutput",
"validate": "run-p --print-label lint test build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.13.14",
"@babel/preset-env": "7.13.12",
"@babel/preset-typescript": "7.13.0",
"@open-wc/testing": "2.5.32",
"@storybook/addon-actions": "6.2.5",
"@storybook/addon-essentials": "6.2.5",
"@storybook/addon-links": "6.2.5",
"@storybook/addons": "6.2.5",
"@storybook/theming": "6.2.5",
"@storybook/web-components": "6.2.5",
"@types/debug": "4.1.5",
"@types/jest": "26.0.22",
"@typescript-eslint/eslint-plugin": "4.20.0",
"babel-loader": "8.2.2",
"cz-conventional-changelog": "3.3.0",
"doctoc": "2.0.0",
"dts-bundle-generator": "5.8.0",
"esbuild": "0.11.4",
"eslint": "7.23.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.1.0",
"eslint-formatter-pretty": "4.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.3",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-unicorn": "29.0.0",
"import-sort-cli": "6.0.0",
"import-sort-parser-babylon": "6.0.0",
"import-sort-parser-typescript": "6.0.0",
"import-sort-style-module": "6.0.0",
"jest": "26.6.3",
"lit-html": "1.3.0",
"markdownlint-cli": "0.27.1",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"sort-package-json": "1.49.0",
"storybook": "6.2.5",
"typescript": "4.2.3"
}
}