-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 924 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": "impagination",
"version": "1.0.0",
"description": "Put the fun back in asynchronous, paginated datasets",
"main": "./lib/dataset.js",
"jsnext:main": "./src/dataset.js",
"scripts": {
"prepublish": "babel --optional runtime src/ --out-dir lib/",
"test": "mocha --reporter tap --full-trace test/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/flexyford/impagination.git"
},
"keywords": [
"dataset"
],
"author": "Alex Ford <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flexyford/impagination/issues"
},
"homepage": "https://github.com/flexyford/impagination#readme",
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.4.0",
"mocha": "^2.3.3",
"rsvp": "^3.1.0"
},
"dependencies": {
"babel-runtime": "^5.8.25",
"binary-search-tree": "^0.2.6",
"util": "^0.10.3"
}
}