-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 893 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
{
"name": "password-generator",
"version": "1.0.0",
"description": "A simple node based password generator",
"repository": {
"type": "git",
"url": "https://github.com/tallboy/TinFoil.git"
},
"main": "src/index.js",
"dependencies": {
"chalk": "2.4.2"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jasmine": "2.10.1",
"eslint-plugin-json": "1.4.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"mocha": "^6.2.1"
},
"scripts": {
"password": "node index.js",
"test": "node_modules/.bin/mocha --reporter spec ./src/**.spec.js",
"lint": "node_modules/eslint/bin/eslint.js ./src/**",
"posttest": "npm run lint && node_modules/.bin/nsp check"
},
"author": "Tommy Ryan",
"license": "ISC"
}