-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.59 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
85
86
87
88
89
90
91
92
93
94
{
"name": "cipher-collection",
"version": "0.3.0",
"description": "Zero-dependency modular cipher collection including all well-known and often used ciphers",
"main": "dist/cipher-collection.cjs.js",
"module": "dist/cipher-collection.esm.js",
"browser": "dist/cipher-collection.umd.js",
"scripts": {
"build": "rollup -c",
"release": "npm run build && standard-version && git push --follow-tags origin master && npm publish",
"build:dev": "rollup -c -w",
"test": "npm run lint && jest --coverage",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"coverage": "codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "npm t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Developmint/cipher-collection"
},
"bugs": {
"url": "https://github.com/Developmint/cipher-collection/issues"
},
"files": [
"src",
"dist"
],
"keywords": [
"cipher",
"crypto",
"code",
"decryption",
"encryption",
"solve",
"riddle",
"puzzle",
"algorithms"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"author": "Alexander Lichter <npm@lichter.io>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-register": "^6.22.0",
"chalk": "^2.4.2",
"codecov": "^3.5.0",
"cross-spawn": "^6.0.5",
"eslint": "^6.2.0",
"eslint-config-standard": "^13.0.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"jest-environment-node": "^24.9.0",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.templates/"
],
"coverageDirectory": "./coverage/",
"verbose": true,
"testURL": "http://localhost/"
}
}