-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1003 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
41
42
43
44
{
"name": "paginatedjs",
"version": "1.1.1",
"description": "A simple JS class to paginate arrays",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "jest"
},
"keywords": [
"javascript",
"pagination",
"simple",
"array",
"node",
"nodejs",
"browser",
"es6"
],
"author": "betaWeb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betaWeb/paginatedjs/issues"
},
"homepage": "https://github.com/betaWeb/paginatedjs#readme",
"repository": {
"type": "git",
"url": "https://github.com/betaWeb/paginatedjs.git"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"jest": "^23.6.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}