-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "nicks",
"version": "0.0.2",
"description": "Suggests nicknames or user ids from name",
"keywords": [
"nickname",
"username",
"user id",
"generator",
"suggestions"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:andersnylund/nicks.git",
"author": "Anders Nylund <anders@andersnylund.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**",
"test": "jest"
},
"files": [
"dist/**/*"
],
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
}