forked from 0x04/pseudo-cipherer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"author": "Oliver Kühn <[email protected]>",
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"bugs": {
"url": "https://github.com/0x04/pseudo-cipherer/issues"
},
"dependencies": {
"@0x04/string-mutilator": "file:../string-mutilator",
"clsx": "^1.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1"
},
"description": "Demonstration of the `string-mutilator` library.",
"devDependencies": {
"gh-pages": "^2.2.0",
"node-sass": "^4.13.1"
},
"homepage": "https://0x04.github.io/pseudo-cipherer/",
"keywords": [
"demo",
"string",
"mutilator"
],
"license": "MIT",
"main": "index.js",
"name": "pseudo-cipherer",
"repository": {
"type": "git",
"url": "git+https://github.com/0x04/pseudo-cipherer.git"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -m \"update: auto generated commit\""
},
"version": "1.0.0"
}