-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "meteor-now",
"version": "0.8.0",
"description": "Deploy meteor apps with one command using now.sh (https://zeit.co/now)",
"repository": "https://github.com/jkrup/meteor-now",
"author": "Justin Krup",
"contributors": [
{
"name": "Mirza Joldic",
"url": "https://github.com/purplecones"
}
],
"license": "MIT",
"preferGlobal": true,
"bin": "./build/main.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"test": "npm run lint && jest",
"test:watch": "jest --watch"
},
"dependencies": {
"cli-spinners": "^1.0.1",
"colors": "^1.1.2",
"del": "^3.0.0",
"file-system": "^2.2.2",
"ora": "^1.3.0",
"prettier": "^1.7.4",
"split-file": "^2.1.0",
"tar": "^4.4.1",
"yargs": "^9.0.1"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.6.0"
}
}