-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.13 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
{
"name": "@authless/client",
"version": "2.0.3",
"description": "Client for the authless-server",
"main": "dist/src/index",
"types": "dist/src/index",
"scripts": {
"test:mocha": "DEBUG=authless* mocha",
"test:coverage:nyc": "nyc --reporter=lcov npm test",
"test": "jest --c jest.config.json --maxWorkers=1",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm test -- --collectCoverage",
"build": "tsc && npm run docs",
"prepare": "npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"semantic-release": "GITHUB_TOKEN=test semantic-release --no-ci --dry-run",
"semantic-release:ci": "npm install && semantic-release",
"code:analyze": "docker run --interactive --tty --rm --env CODECLIMATE_CODE=\"$PWD\" --volume \"$PWD\":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate analyze",
"docs:api": "api-extractor run --local",
"docs": "npm run docs:api && api-documenter markdown -i etc -o docs/markdown"
},
"license": "ISC",
"author": "",
"dependencies": {
"@types/check-types": "^7.3.1",
"axios": "^0.19.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@microsoft/api-documenter": "^7.8.4",
"@microsoft/api-extractor": "^7.8.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^16.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-tsdoc": "^0.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.5.3",
"mocha": "^7.0.0",
"nyc": "^15.0.1",
"semantic-release": "^17.0.7",
"sinon": "^8.1.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
}
}