-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1022 Bytes
/
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
{
"name": "@nextdotid/sdk",
"version": "0.0.0",
"description": "Next.ID JavaScript SDK",
"license": "MIT",
"author": "NextDotID",
"main": "cjs/index.js",
"module": "esm/index.js",
"files": [
"src",
"esm",
"cjs"
],
"scripts": {
"lint": "eslint . --fix",
"prepublishOnly": "rimraf esm cjs && tsc && tsc -p tsconfig.cjs.json",
"set-version": "npm --no-git-tag-version version \"$npm_package_version-$BUILD_VERSION\"",
"spellcheck": "cspell \"**\"",
"test": "mocha"
},
"devDependencies": {
"@dimensiondev/eslint-plugin": "^0.0.2-20220501020553-ec7e75d",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cspell": "^5.20.0",
"fetch-mock": "^9.11.0",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}