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
|
{
"name": "keybase-javascript",
"version": "1.0.0",
"description": "An extremely basic POC for GPG signed JavaScript. Currently only verifies signatures are attached to scripts. If the JavaScript isn't signed, or the signature isn't valid, the JavaScript isn't executed.",
"main": "index.js",
"dependencies": {
"bluebird": "^3.5.2",
"bootstrap": "^4.1.3",
"bower": "^1.8.4",
"jquery": "^3.3.1",
"kbpgp": "^2.0.79",
"popper.js": "^1.14.4",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-router-dom": "^4.3.1",
"typeface-open-sans-condensed": "0.0.54"
},
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-router-dom": "^4.3.1",
"css-loader": "^1.0.0",
"node-sass": "^4.9.3",
"prettier": "^1.14.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"ts-loader": "^5.1.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3",
"typestrict": "^1.0.0",
"url-loader": "^1.1.1",
"web-ext": "^2.9.1",
"web-ext-types": "^2.1.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-w": "webpack --display-error-details --progress --colors -w",
"build": "webpack --display-error-details --progress --colors",
"start": "web-ext run",
"fmt": "prettier --list-different {common,src,popup}/**/*.{ts,tsx}",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --format stylish '{common,src,popup}/**/*.{ts,tsx}'",
"fix": "npm run fmt -- --write; npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w4/keypinned-javascript.git"
},
"author": "Jordan Doyle <jordan@doyle.la>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w4/keypinned-javascript/issues"
},
"homepage": "https://github.com/w4/keypinned-javascript#readme"
}
|