-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) 路 2.55 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) 路 2.55 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
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
{
"name": "wakatime-client",
"version": "0.0.0-development",
"description": "NodeJS Client for the Wakatime API",
"keywords": [
"wakatime",
"wakatime client"
],
"homepage": "https://github.com/jaebradley/wakatime-client/#readme",
"readme": "https://github.com/jaebradley/wakatime-client/#readme",
"bugs": {
"url": "https://github.com/jaebradley/wakatime-client/issues"
},
"license": "MIT",
"author": {
"name": "jae.b.bradley@gmail.com"
},
"files": [
"build"
],
"browser": "build/index.js",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/jaebradley/wakatime-client"
},
"global": false,
"scripts": {
"build": "BABEL_ENV=production npx rollup -c",
"codecov": "npx codecov",
"commitmsg": "npx commitlint -E HUSKY_GIT_PARAMS",
"deploy": "npm run semantic-release'",
"gc": "commit",
"is-build-es5": "npx es-check es5 './build/**/*.!(esm).js'",
"lint": "npx eslint --ext .js .",
"prepare": "npm run build",
"semantic-release": "npx semantic-release",
"test": "BABEL_ENV=test jest src/ -c jest.config.shared.js",
"unit-test": "BABEL_ENV=test jest src/ -c jest.config.unit.js",
"integration-test": "BABEL_ENV=test jest src/ -c jest.config.integration.js"
},
"dependencies": {},
"peerDependencies": {
"axios": "^0.19.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-regenerator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/runtime": "^7.13.10",
"@commitlint/cli": "^12.1.0",
"@commitlint/config-angular": "^12.0.1",
"@commitlint/prompt": "^12.1.0",
"@commitlint/prompt-cli": "^12.1.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0-1",
"@rollup/plugin-node-resolve": "^11.2.0",
"axios": "^0.21.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.0-next.5",
"codecov": "^3.8.1",
"dotenv": "^8.2.0",
"es-check": "^5.2.3",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.2.0",
"jest": "^27.0.0-next.5",
"marked": "^2.0.1",
"rollup": "^2.42.3",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.4.2"
}
}