This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
126 lines (126 loc) · 4.01 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "sunder",
"productName": "Sunder",
"version": "0.1.1",
"repository": "https://github.com/freedomofpress/sunder.git",
"description": "Desktop application providing a simple UI for the Shamir secret sharing scheme.",
"author": {
"name": "Freedom of the Press Foundation",
"email": "[email protected]"
},
"main": "main.js",
"scripts": {
"test": "cross-env NODE_ENV=test electron-mocha --require babel-core/register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-watch": "npm test -- --watch",
"test-e2e": "cross-env NODE_ENV=production mocha --compilers js:babel-core/register --require ./test/setup.js --require co-mocha ./test/e2e.js",
"coverage": "NODE_ENV=test node_modules/.bin/nyc --require babel-core/register node_modules/.bin/_mocha --recursive --require ./test/setup.js test/**/*.spec.js",
"lint": "eslint src test *.js",
"hot-server": "node server.js",
"clean": "rm -rf ./dist/*",
"build-app": "cross-env NODE_ENV=production webpack --config webpack.config.production.js --progress --profile --colors",
"clean-build": "npm prune && npm run clean && npm run build-app",
"start": "cross-env NODE_ENV=production electron ./",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron ./",
"postinstall": "electron-builder install-app-deps && node tasks/postinstall.js",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\"",
"dist": "npm run build-app && build"
},
"build": {
"productName": "Sunder",
"linux": {
"icon": "build/icons/",
"target": [
"deb"
]
},
"files": [
"dist/bundle.js",
"dist/style.css",
"dist/*.eot",
"dist/*.svg",
"dist/*.woff2",
"main.js",
"app.html"
]
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"license": "BSD-3-Clause",
"devDependencies": {
"asar": "^0.11.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-webpack-loaders": "^0.9.0",
"babel-polyfill": "^6.6.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.3.0",
"co-mocha": "^1.2.2",
"concurrently": "^2.0.0",
"cross-env": "^1.0.7",
"css-loader": "^2.1.1",
"del": "^2.0.1",
"dirty-chai": "^1.2.2",
"electron": "^2.0.11",
"electron-build-env": "^0.2.0",
"electron-builder": "^20.39.0",
"electron-mocha": "^5.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-15": "^1.3.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^4.3.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"hoek": "^5.0.4",
"jsdom": "^8.4.0",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"mockery": "^1.6.2",
"moment": "^2.22.2",
"neon-cli": "^0.1.23",
"node-sass": "^3.4.2",
"nyc": "^13.3.0",
"react-addons-test-utils": "^15.0.0",
"react-test-renderer": "^15.6.2",
"redux-logger": "^2.6.1",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"spectron": "^3.8.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.24.3",
"webpack-target-electron-renderer": "^0.4.0"
},
"dependencies": {
"electron-debug": "^1.5.0",
"font-awesome": "^4.4.0",
"prop-types": "^15.6.2",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-redux": "^4.4.9",
"react-router": "^3.2.1",
"react-router-redux": "^4.0.0",
"redux": "^3.6.0",
"redux-form": "^6.8.0",
"redux-promise": "^0.5.1",
"redux-thunk": "^2.3.0",
"rusty-secrets": "=0.3.0"
},
"nyc": {
"include": [
"src/**"
]
}
}