-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "scim-patch",
"version": "0.8.3",
"description": "SCIM Patch operation (rfc7644).",
"main": "lib/src/scimPatch.js",
"types": "lib/src/scimPatch.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/thomaspoignant/scim-patch"
},
"keywords": [
"scim",
"patch",
"rfc7644"
],
"scripts": {
"mocha": "npm run build && ./node_modules/.bin/mocha 'lib/test/**/*.test.js'",
"test": "nyc mocha 'lib/test/**/*.test.js'",
"coverage": "nyc report --reporter=text-lcov",
"build": "tsc",
"bench": "npm run build && node lib/test/perf/benchmark.js",
"lint": "eslint . --ext .ts"
},
"author": "[email protected]",
"license": "Unlicense",
"devDependencies": {
"@types/benchmark": "2.1.5",
"@types/chai": "4.3.16",
"@types/mocha": "10.0.9",
"@typescript-eslint/eslint-plugin": "7.0.0",
"@typescript-eslint/parser": "6.21.0",
"benchmark": "2.1.4",
"chai": "4.5.0",
"coveralls": "3.1.1",
"eslint": "8.57.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-testing-library": "6.4.0",
"mocha": "^10.2.0",
"nyc": "17.1.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"@types/node": "^22.0.0",
"fast-deep-equal": "3.1.3",
"scim2-parse-filter": "0.2.10"
},
"publishConfig": {
"access": "public"
}
}