-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.45 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": "autoscroll-without-opinions",
"version": "0.0.22-beta",
"license": "MIT",
"description": "Autoscroll with no opinions.",
"author": "Sarah Schultz",
"homepage": "https://github.com/sarahjschultz/autoscroll-without-opinions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sarahjschultz/autoscroll-without-opinions.git"
},
"contributors": [
"Sarah Schultz <[email protected]>"
],
"bugs": {
"url": "https://github.com/sarahjschultz/autoscroll-without-opinions/issues"
},
"files": [
"lib",
"src"
],
"keywords": [
"autoscroll",
"drag-and-drop",
"es6"
],
"scripts": {
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run clean && npm run build",
"test": "jest"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"main": "./lib/index.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.3.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"istanbul": "^1.0.0-alpha",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"smoothscroll-polyfill": "^0.4.4"
}
}