-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.04 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "stuck-js",
"version": "2.1.4",
"description": "A sticky library handles stack of stickies and supports scrollX without dependencies(like jQuery)",
"main": "./lib/index.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"scripts": {
"start": "cross-env NODE_ENV=development webpack --config ./webpack.config.js --progress --colors --watch",
"build": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --progress",
"lint": "eslint --cache --ext .ts,.js src",
"ci:lint": "eslint --cache --cache-location ~/.cache/eslint --quiet --ext .ts,.js src",
"pretest": "npm run build",
"prettier": "prettier --write ./src/**",
"test": "jest",
"ci:test": "jest",
"test:watch": "jest --watch",
"semantic-release": "semantic-release"
},
"author": "Ryonkmr",
"keywords": [
"sticky",
"scroll",
"fixed"
],
"repository": {
"type": "git",
"url": "https://github.com/RyoNkmr/stuck-js.git"
},
"bugs": {
"url": "https://github.com/RyoNkmr/stuck-js/issues"
},
"homepage": "https://ryonkmr.github.io/stuck-js/",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "3.0.6",
"@semantic-release/commit-analyzer": "6.3.3",
"@semantic-release/git": "7.0.18",
"@semantic-release/github": "5.5.8",
"@semantic-release/npm": "5.3.5",
"@semantic-release/release-notes-generator": "7.3.5",
"@types/expect-puppeteer": "3.3.1",
"@types/jest": "26.0.0",
"@types/jest-environment-puppeteer": "4.3.1",
"@types/puppeteer": "2.0.1",
"@typescript-eslint/eslint-plugin": "1.9.0",
"compression-webpack-plugin": "3.1.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-import-resolver-webpack": "0.11.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"husky": "4.2.3",
"jest": "24.8.0",
"jest-puppeteer": "4.4.0",
"lint-staged": "10.5.4",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"puppeteer": "2.1.1",
"semantic-release": "15.14.0",
"ts-jest": "24.3.0",
"ts-loader": "7.0.5",
"typescript": "3.9.9",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.46.0",
"webpack-cli": "3.3.11"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook",
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "npm build && npm test"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"lint-staged": {
"linters": {
"*.{js,ts}": [
"npm run lint",
"git add"
]
},
"ignore": [
"docs/*.js",
"specs/*.js",
"./*.js"
]
}
}