-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.19 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
{
"name": "seekrit",
"description": "An end-to-end encrypted file host, inspired by Firefox Send.",
"author": "Jesse Bryan <jesse@winneon.moe>",
"version": "0.1.0",
"license": "MIT",
"repository": "winneon/seekrit",
"bin": {
"seekrit": "lib/bin/seekrit.js"
},
"xo": {
"space": true,
"semicolon": false,
"extends": "xo-react",
"rules": {
"object-curly-spacing": 0,
"array-bracket-spacing": 0,
"react/jsx-tag-spacing": 0,
"react/jsx-curly-spacing": 0
}
},
"ava": {
"files": [
"test/**/*.js"
],
"failWithoutAssertions": false,
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"lib/**/*",
"test/**/*",
"**/*.config.js"
]
},
"pkg": {
"assets": [
".next/**/*",
"pages",
"sass"
],
"scripts": [
".next/dist/**/*.js"
],
"targets": [
"latest-linux-x64",
"latest-macos-x64",
"latest-win-x64"
]
},
"scripts": {
"dev": "babel-node app/dev.js",
"build": "next build && cross-env BABEL_ENV=production babel app/* bin/* -d lib",
"predist": "npm run build",
"dist": "pkg . --out-dir dist",
"postinstall": "npm run build",
"start": "node lib/bin/seekrit",
"pretest": "npm run build",
"test": "xo && cross-env NODE_ENV=production nyc ava --verbose"
},
"dependencies": {
"autoprefixer": "^7.1.3",
"babel-plugin-wrap-in-js": "^1.1.1",
"bootstrap": "^4.0.0-beta",
"glob": "^7.1.2",
"minimist": "^1.2.0",
"next": "^3.2.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-transition-group": "^1.1.2",
"reactstrap": "^4.8.0",
"sass-loader": "^6.0.6"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"enzyme": "^2.9.1",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.3.0",
"nyc": "^11.1.0",
"pkg": "^4.2.4",
"react-addons-test-utils": "^15.6.0",
"xo": "^0.18.2"
}
}