-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 982 Bytes
/
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
{
"name": "npm-ver",
"description": "Command line tool for checking the version on an npm package",
"version": "0.1.0",
"author": "Samuel Nkoom Amoah <sa.am@programmer.net>",
"keywords": [
"npm",
"npm version",
"commandline tool"
],
"dependencies": {
"babel-runtime": "^6.20.0",
"commander": "^2.9.0",
"js-object-pretty-print": "^0.3.0",
"path": "^0.12.7"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"tape": "^4.6.3"
},
"scripts": {
"prepublish": "npm run compile",
"test": "npm run compile && node_modules/.bin/tape test/*.js",
"compile": "npm run lint && babel lib --out-dir dist --copy-files",
"lint": "node_modules/.bin/eslint lib"
},
"bin": {
"npmv": "dist/index.js"
}
}