-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
{
"name": "uxid",
"version": "0.0.1",
"description": "User eXperience focused IDentifiers",
"main": "./dist/uxid.js",
"types": "./dist/uxid.d.js",
"scripts": {
"build": "tsc",
"format:check": "prettier --check '{src,test}/**/*.{js,ts}'",
"format": "prettier --write '{src,test}/**/*.{js,ts}'",
"lint": "eslint '*/**/*.{js,ts,ts}' --quiet --fix",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test:fix": "npm run test -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riddler/uxid.git"
},
"files": [
"dist/uxid.js",
"dist/uxid.d.js",
"CHANGELOG.md",
"LICENSE.txt",
"README.md"
],
"author": "JohnnyT <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/riddler/uxid/issues"
},
"homepage": "https://github.com/riddler/uxid#readme",
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^6",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"jest-runner-eslint": "^0.9.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}