-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.78 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
{
"name": "vanilla-smoothie",
"version": "2.2.5",
"description": "A minimal smooth scroll library based on vanilla JavaScript.",
"author": "kimulaco",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kimulaco/vanilla-smoothie.git"
},
"bug": "https://github.com/kimulaco/vanilla-smoothie/issues",
"homepage": "https://kimulaco.github.io/vanilla-smoothie/",
"main": "dist/vanilla-smoothie.js",
"umd:main": "dist/vanilla-smoothie.min.js",
"types": "dist/vanilla-smoothie.d.ts",
"scripts": {
"build": "npm-run-all -s lint build:*",
"build:main": "cross-env NODE_ENV=production rollup -c",
"build:minify": "cross-env NODE_ENV=production MINIFY=true rollup -c",
"build:docs": "node script/docs.js",
"dev": "npm-run-all -p dev:*",
"dev:build": "cross-env MINIFY=true rollup -c -w",
"dev:docs": "node script/docs.js -w",
"dev:server": "serve docs -p 3000",
"lint": "eslint -c .eslintrc.js src/ts/*ts docs/js/script.js",
"test": "jest --verbose --runInBand"
},
"lint-staged": {
"*.{ts,js}": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-playwright-preset": "^0.0.14",
"lint-staged": "^10.0.8",
"marked": "^0.8.0",
"npm-run-all": "^4.1.5",
"playwright": "^0.11.1",
"rollup": "^2.0.6",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"serve": "^11.3.0",
"typescript": "3.8.3"
}
}