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
|
{
"name": "xor-crypt",
"title": "XOR Crypt",
"description": "Simple XOR string encryption library.",
"version": "1.1.0",
"keywords": [
"encryption"
],
"files": [
"xor-crypt.js",
"xor-crypt.min.js"
],
"homepage": "https://github.com/RobLoach/xor-crypt",
"author": "Rob Loach (http://github.com/RobLoach)",
"maintainers": [
"Rob Loach (https://github.com/RobLoach)"
],
"browser": {
"xor-crypt": "xor-crypt.js"
},
"main": "xor-crypt.js",
"repository": {
"type": "git",
"url": "https://github.com/RobLoach/xor-crypt.git"
},
"bugs": {
"url": "https://github.com/RobLoach/xor-crypt/issues"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {},
"devDependencies": {
"standard": "^7.1.2",
"testit": "^2.0.2",
"uglify-js": "~2.7.0"
},
"scripts": {
"posttest": "standard",
"test": "node test",
"build": "uglifyjs xor-crypt.js -o xor-crypt.min.js --comments --mangle",
"package": "npm install && npm test && npm run build"
},
"contributors": [
"Rob Loach (https://github.com/RobLoach)"
],
"license": "MIT"
}
|