-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 KB
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
{
"name": "calendar-set",
"version": "0.3.2",
"description": "Framework agnostic calendar components",
"keywords": [
"calendar",
"component",
"UI",
"Svelte"
],
"files": [
"dist"
],
"main": "dist/calendar-set.cjs.js",
"module": "dist/calendar-set.es.js",
"unpkg": "dist/calendar-set.js",
"author": "katashin",
"license": "MIT",
"homepage": "https://github.com/ktsn/calendar-set",
"bugs": "https://github.com/ktsn/calendar-set/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/calendar-set.git"
},
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"prebuild": "bili --format es --config bili.config.pre.js",
"build": "bili --format cjs,es,umd,umd-min",
"lint": "eslint --ext html src test",
"test": "jest",
"test:watch": "jest --watch",
"examples": "webpack-dev-server --hot --open",
"examples:deploy": "webpack --mode production && ./examples/deploy.sh"
},
"jest": {
"testRegex": "/test/.+\\.spec\\.js$",
"transform": {
"\\.js$": "babel-jest",
"\\.html$": "svelte-jest"
}
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"bili": "^3.1.2",
"eslint": "^4.19.1",
"eslint-config-ktsn": "^1.0.3",
"eslint-plugin-html": "^4.0.3",
"glob": "^7.1.2",
"jest": "^23.1.0",
"postcss": "^6.0.22",
"postcss-custom-properties": "^7.0.0",
"prettier": "1.13.3",
"rollup-plugin-svelte": "^4.1.0",
"svelte": "^2.7.0",
"svelte-jest": "^0.2.0",
"svelte-loader": "^2.9.1",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
}
}