-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 878 Bytes
/
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
{
"name": "layout-queue",
"version": "1.0.0",
"description": "A queue for javascript actions that affect layout, which need to execute on browser window resize and need to execute in a specific order.",
"main": "src/LayoutQueue.js",
"scripts": {
"test": "mocha",
"build": "webpack"
},
"keywords": [
"layout",
"queue",
"window",
"resize"
],
"author": "Dave Toews (http://davejtoews.com)",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^9.9.1",
"jsdom-global": "^2.1.1",
"mocha": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davejtoews/layout-queue.git"
},
"bugs": {
"url": "https://github.com/davejtoews/layout-queue/issues"
},
"homepage": "https://github.com/davejtoews/layout-queue#readme",
"dependencies": {
"webpack": "^3.5.5"
}
}