-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "dom-minimap",
"version": "1.8.0",
"description": "simply lovely dom minimap",
"main": "es5.js",
"source": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "budo example/index.js --live",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx babel index.js --presets @babel/preset-env -o es5.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reminyborg/dom-minimap.git"
},
"keywords": [
"dom",
"minimap",
"lovely",
"simple"
],
"author": "Remi Nyborg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/reminyborg/dom-minimap/issues"
},
"homepage": "https://github.com/reminyborg/dom-minimap#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"budo": "^9.1.0",
"standard": "^8.0.0"
},
"dependencies": {
"insert-css": "^1.0.0",
"lodash.debounce": "^4.0.8",
"nanoraf": "^2.1.1",
"on-load": "^3.2.0",
"yo-yo": "^1.2.2"
}
}