-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 KB
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
{
"name": "cli-autoupdater",
"version": "1.1.0",
"description": "Auto-updating for node cli tools",
"main": "lib/index.js",
"files": [
"/lib"
],
"repository": "https://github.com/danrigsby/cli-autoupdater",
"author": "Dan Rigsby <danrigsby@gmail.com>",
"license": "MIT",
"keywords": [
"autoupdater",
"cli"
],
"scripts": {
"start": "npm run lint:fix && npm run build",
"build": "rimraf lib && babel src --out-dir lib --copy-files --ignore __test__",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint src",
"test": "echo \"no tests\"",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"chalk": "^1.1.3",
"inquirer": "^3.1.1",
"semver": "^5.3.0",
"shelljs": "^0.7.8"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-1": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.4.2",
"mocha-circleci-reporter": "^0.0.2",
"reporter": "^0.1.0",
"rimraf": "^2.6.1"
}
}