forked from SidebarJS/sidebarjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.47 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
{
"name": "sidebarjs",
"library": "SidebarJS",
"version": "6.1.0",
"description": "Create mobile sidebar/sidenav experience in pure javascript",
"main": "./lib/umd/sidebarjs.js",
"module": "./lib/esm/sidebarjs.js",
"typings": "./lib/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "node .build/index.mjs",
"build:watch": "npm run build -- --watch",
"server": "live-server --open=demo --watch=lib/sidebarjs.css,lib/umd/sidebarjs.js",
"demo": "npm run build && npm run server",
"start": "npm run build:watch | npm run server",
"format": "prettier --config .prettierrc --write src/*.ts && eslint --fix",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"commit:version": "git add . && git commit -am 'chore(version): $npm_package_version'",
"prerelease": "npm run build && npm run changelog && npm run commit:version"
},
"engines": {
"npm": ">=6.10.0",
"node": ">=12.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SidebarJS/sidebarjs.git"
},
"author": "Lorenzo D'Ianni <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SidebarJS/sidebarjs/issues"
},
"homepage": "https://github.com/SidebarJS/sidebarjs#readme",
"keywords": [
"sidebar",
"sidenav",
"javascript",
"sidebarjs"
],
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@types/jest": "26.0.14",
"@typescript-eslint/eslint-plugin": "4.4.1",
"@typescript-eslint/parser": "4.4.1",
"autoprefixer": "10.0.1",
"conventional-changelog-cli": "2.1.0",
"cssnano": "4.1.10",
"eslint": "7.11.0",
"eslint-config-prettier": "6.12.0",
"fs-extra": "9.0.1",
"gesture-events": "1.0.0",
"jest": "26.5.3",
"live-server": "1.2.1",
"node-sass": "4.14.1",
"node-sass-watcher": "0.5.1",
"postcss": "8.1.1",
"prettier": "2.1.2",
"rollup": "2.30.0",
"rollup-plugin-terser": "7.0.2",
"signale": "1.4.0",
"sinon": "9.2.0",
"ts-jest": "26.4.1",
"typescript": "4.0.3"
},
"browserslist": [
"iOS 6",
"Android 4",
"last 2 versions"
],
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}