-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "md-sync-scroll",
"version": "1.0.5",
"description": "让两个HTML元素进行同步滚动的插件",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --config webpack.config.js && webpack-dev-server --open",
"build": "webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siaikin/sync-scroll.git"
},
"keywords": [
"markdown",
"async scroll"
],
"author": "siaikin",
"license": "MIT",
"bugs": {
"url": "https://github.com/siaikin/sync-scroll/issues"
},
"homepage": "https://github.com/siaikin/sync-scroll#readme",
"files": [
"dist/md-sync-scroll.js",
"src/lib",
"src/index.js"
],
"dependencies": {
"@babel/polyfill": "^7.4.3"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"css-loader": "^2.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"core-js": "^3.0.1",
"github-markdown-css": "^3.0.1",
"highlight.js": "^9.15.6",
"markdown-it": "^8.4.2"
}
}