-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.5 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
{
"name": "servable-pageable-shared",
"description": "Pageable protocol shared for Servable.",
"type": "module",
"source": "src/index.js",
"main": "src/index.js",
"version": "0.0.0-development",
"author": "Aboubacar Doucoure",
"license": "ISC",
"bugs": {
"url": "https://github.com/yelounak/servable-pageable-shared/issues"
},
"homepage": "https://github.com/yelounak/servable-pageable-shared#readme",
"files": [
"src"
],
"engines": {
"node": ">=10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"semantic-release": "semantic-release",
"acp": "git add . && npm run commit && git push",
"commit": "git-cz",
"size": "size-limit",
"analyze": "size-limit --why",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "yarn node --require=dotenv/config --experimental-vm-modules --experimental-specifier-resolution=node $(yarn bin jest) --config ./jest.config.json",
"test:watch": "react-scripts test --env=jsdom"
},
"repository": {
"type": "git",
"url": "https://github.com/yelounak/servable-pageable-shared.git"
},
"keywords": [
"servable",
"protocol",
"server"
],
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "20 KB"
},
{
"path": "dist/index.modern.js",
"limit": "20 KB"
},
{
"path": "dist/index.umd.js",
"limit": "20 KB"
}
],
"peerDependencies": {
"@servable/server": "*",
"underscore": ">= 1.0.0",
"moment": ">= 2.0.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.10.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^6.0.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"semantic-release": "^22.0.5",
"size-limit": "^4.10.2"
}
}