-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "git-add-interactive",
"version": "0.5.0",
"description": "Dynamically stage files to git",
"main": "dist",
"repository": "https://github.com/emaincourt/git-add-interactive",
"author": "emaincourt <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "babel lib -d dist",
"start": "node dist",
"prepare": "yarn test",
"prepublishOnly": "yarn build"
},
"bin": {
"git-add-interactive": "./bin/git-add-interactive.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"jest": "^21.2.1",
"lodash": "^4.17.4",
"prettier": "^1.11.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"blessed": "^0.1.81",
"node-emoji": "^1.8.1"
}
}