-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 KB
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": "switcher-client",
"version": "4.5.1",
"description": "Client JS SDK for working with Switcher-API",
"main": "./switcher-client.js",
"type": "module",
"types": "./src/types/index.d.ts",
"author": {
"name": "Roger Floriano",
"email": "switcher.project@gmail.com",
"url": "https://github.com/petruki"
},
"keywords": [
"feature",
"toggle",
"flag",
"switcher-api"
],
"license": "MIT",
"scripts": {
"lint": "eslint ./src/**/*.js ./tests/**/*.js",
"test": "npm run coverage \"./tests/**/*.test.js\"",
"test-file": "env-cmd -- npm run coverage",
"test-local": "env-cmd -- npm run coverage \"./tests/**/*.test.js\"",
"coverage": "c8 --include='src/**/*.js' mocha",
"play": "env-cmd -- node ./tests/playground/index.js"
},
"files": [
"LICENSE",
"switcher-client.js",
"src/"
],
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"c8": "^10.1.3",
"chai": "^6.2.2",
"env-cmd": "^11.0.0",
"eslint": "^9.39.2",
"mocha": "^11.7.5",
"mocha-sonarqube-reporter": "^1.0.2",
"sinon": "^21.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/switcherapi/switcher-client-js"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
}
}