-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "simple-crypto-js",
"version": "3.0.1",
"description": "Simplify AES encryption and decryption of any JavaScript objects, implementing crypto-js library.",
"repository": "https://github.com/danang-id/simple-crypto-js.git",
"homepage": "https://simplecrypto.js.org/",
"author": "Danang Galuh Tegar Prasetyo <danang.galuh.t@outlook.com> (https://github.com/danang-id)",
"license": "MIT",
"main": "lib/SimpleCrypto.js",
"files": [
"dist/*",
"docs/*",
"lib/*",
"CHANGELOG.md",
"DOCUMENTATION.md",
"SECURITY.md"
],
"scripts": {
"docs": "rimraf docs && jsdoc --configure jsdoc.json",
"build": "tsc -p tsconfig.json",
"dist": "webpack --config webpack.config.js && ts-node scripts/minify.ts",
"test": "cross-env NODE_ENV=test nyc mocha 'test/**/*.test.ts'",
"test:watch": "cross-env NODE_ENV=test nyc mocha --watch 'test/**/*.test.ts'",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"clean": "rimraf dist lib",
"lint": "eslint '*/*.ts' --quiet --fix"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/uglify-js": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"better-docs": "^2.3.2",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdoc": "^3.6.7",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"uglify-js": "^3.14.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": [
"eslint --fix"
]
},
"packageManager": "yarn@3.1.1"
}