-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "paginate-array",
"version": "2.0.0",
"description": "Pagination for arrays in javascript",
"main": "./lib/paginate-array.js",
"scripts": {
"clean": "rimraf lib",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/NetanelBasal/paginate-array"
},
"keywords": [
"pagination",
"paginate",
"arrays",
"node",
"javascript"
],
"author": "Netanel Basal",
"license": "MIT",
"homepage": "https://github.com/NetanelBasal/paginate-array#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"cross-env": "^2.0.0",
"mocha": "^3.0.0",
"rimraf": "^2.5.2"
}
}