forked from 1rosehip/jplist-es6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.52 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "jplist-es6",
"version": "1.2.0",
"description": "jPList is a JavaScript library for sorting, pagination and filtering of any HTML structure like DIVs, UL/LI, tables, etc.",
"scripts": {
"watch": "webpack --config webpack.config.js --watch",
"build": "webpack --config webpack.config.js",
"watch.es6": "webpack --config webpack.config.es6.js --watch",
"build.es6": "webpack --config webpack.config.es6.js",
"build110": "webpack --config webpack.config.js --version=1.1.0",
"test": "jest src",
"test120": "jest src/1.2.0",
"lint": "./node_modules/.bin/eslint src",
"site": "light-server -s docs -p 3000 -b localhost --no-reload -w 'build/site/** # npm run render && echo Rendered!'",
"render": "node ./build/site/render.js"
},
"author": "Miriam Zusin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/1rosehip/jplist-es6"
},
"bugs": {
"url": "https://github.com/1rosehip/jplist-es6/issues"
},
"keywords": [
"sort",
"sorting",
"filter",
"filtering",
"search",
"pagination",
"paging"
],
"homepage": "http://jplist.org",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-jest": "^22.4.0",
"babel-loader": "^8.1.0",
"core-js": "^2.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-require-ignore": "^0.1.1",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/runtime": "^7.11.2",
"bliss": "^1.0.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.10",
"cssnano": "^3.10.0",
"eslint": "^4.18.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"from": "^0.1.7",
"fs-extra": "^5.0.0",
"import": "0.0.6",
"jest": "^22.4.0",
"light-server": "^2.5.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.1",
"postcss-nested": "^3.0.0",
"postcss-prettify": "^0.3.4",
"postcss-simple-vars": "^4.1.0",
"resolve": "^1.5.0",
"sinon": "^4.3.0",
"style-loader": "^0.20.3",
"uglifycss": "0.0.29",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"setupFiles": [
"<rootDir>/jest/globals.js"
],
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/jest/mocks/style-mock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/jest/mocks/file-mock.js"
}
},
"dependencies": {}
}