-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "jnpl-helper",
"version": "1.5.20",
"description": "list of basic helper functions for web development",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.spec.js --timeout 60000 --exit",
"build": "webpack --config webpack.config.js",
"start:example": "node example/"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jnplonte/helper.git"
},
"keywords": [
"helper",
"jnpl",
"npm",
"module",
"node",
"javascript"
],
"author": "john paul onte <jnpl.onte@gmail.com>",
"license": "MIT",
"dependencies": {
"crypto-js": "^4.0.0",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"acorn": "^8.0.1",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}