-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@eldynn/index",
"version": "1.2.1",
"description": "A simple library to handle a directory of users and groups.",
"author": "Robin BAILLARGEAUX",
"license": "MIT",
"browserslist": [
"> 5%",
"last 2 versions",
"not last 2 ie version",
"not dead"
],
"engines": {
"node": ">= 11.0.0",
"npm": ">= 6.0.0"
},
"main": "./build/index.js",
"module": "./build/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Eldynn/index.git"
},
"homepage": "https://github.com/Eldynn/index#readme",
"bugs": {
"url": "https://github.com/Eldynn/index/issues"
},
"keywords": [
"typescript",
"library",
"users",
"groups"
],
"scripts": {
"prepare": "npm run build",
"security": "npm audit",
"pretest": "npm run prepare",
"test": "jest --config jest.config.json --colors --expand",
"test:watch": "npm test -- --watch",
"test:ci": "npm test -- --ci --runInBand --reporters=default --reporters=jest-junit",
"precodacy:ci": "npm run test:ci",
"codacy:ci": "codacy-coverage < ./coverage/lcov.info",
"build": "rollup --config rollup.config.ts",
"build:watch": "npm run build -- --watch",
"predocs": "typedoc --module \"commonjs\" --out docs src/",
"docs": "tplant --input src/index.ts > docs/index.puml",
"postdocs": "bash ./scripts/docs.sh"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"/build/index.js",
"/build/umd.js",
"/build/*.d.ts"
],
"devDependencies": {
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^7.0.0",
"@semantic-release/release-notes-generator": "^7.1.4",
"@types/jest": "^25.1.0",
"@types/randomstring": "^1.1.6",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^1.6.0",
"codacy-coverage": "^3.4.0",
"commitizen": "^4.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^23.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^4.2.2",
"jest": "^24.7.1",
"jest-junit": "^7.0.0",
"lint-staged": "^10.0.8",
"prettier": "^1.16.4",
"pretty-ms": "^6.0.0",
"randomstring": "^1.1.5",
"rollup": "^1.11.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.22.0",
"semantic-release": "^15.13.12",
"tplant": "^2.2.1",
"ts-jest": "^25.1.0",
"tslib": "^1.9.3",
"typedoc": "^0.16.10",
"typescript": "^3.4.2",
"uuid": "^7.0.0"
}
}