-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "text-obfuscator",
"version": "1.2.0",
"description": "Simple Text Obfuscator for NodeJS or Browser",
"main": "src/text-obfuscator.js",
"types": "src/text-obfuscator.d.ts",
"scripts": {
"browserify": "browserify src/text-obfuscator.js --s TextObfuscator -o dist/text-obfuscator.js",
"babel": "babel dist/text-obfuscator.js --out-file dist/text-obfuscator.js",
"minify": "uglifyjs dist/text-obfuscator.js -c -m -o dist/text-obfuscator.min.js",
"build": "semistandard && npm run browserify && npm run babel && npm run minify",
"test": "semistandard && nyc --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aalfiann/text-obfuscator.git"
},
"keywords": [
"string-obfuscator",
"text-obfuscator",
"string-cryptography",
"text-cryptography",
"simple-obfuscator",
"simple-cryptography",
"obfuscator",
"cryptography"
],
"author": "M ABD AZIZ ALFIAN",
"license": "MIT",
"bugs": {
"url": "https://github.com/aalfiann/text-obfuscator/issues"
},
"homepage": "https://github.com/aalfiann/text-obfuscator#readme",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-transform-spread": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@types/node": "^20.11.17",
"browserify": "^17.0.0",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"semistandard": "^17.0.0",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4"
},
"semistandard": {
"ignore": [
"dist/",
"src/*.ts"
]
}
}