-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1008 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
36
37
38
39
40
{
"name": "bookshelf-page",
"version": "0.3.1",
"description": "Simple pagination for Bookshelf.js",
"author": {
"name": "Edward Greve",
"email": "[email protected]"
},
"scripts": {
"clean": "rm -rf ./lib",
"dev": "babel -w -q -L -D ./src/ --out-dir ./lib/",
"build": "babel -q -L -D ./src/ --out-dir ./lib/"
},
"contributors": [],
"main": "lib/index.js",
"keywords": [
"bookshelf",
"pagination"
],
"repository": {
"type": "git",
"url": "https://github.com/anyong/bookshelf-page.git"
},
"bugs": {
"url": "https://github.com/anyong/bookshelf-page/issues"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.3.4"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.5.3",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3"
}
}