-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.85 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@theintern/common",
"version": "0.3.0",
"description": "Common modules used by @theintern projects",
"homepage": "http://theintern.io/",
"license": "BSD-3-Clause",
"bugs": "https://github.com/theintern/common/issues",
"keywords": [
"javascript",
"test",
"testing",
"intern",
"leadfoot",
"digdug"
],
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/theintern/common.git"
},
"scripts": {
"build": "intern-dev-clean && webpack",
"clean": "intern-dev-clean",
"lint": "intern-dev-lint",
"release": "intern-dev-release",
"test": "intern",
"precommit": "lint-staged",
"watch": "webpack --watch",
"ci": "npm run test",
"preci": "npm run build",
"devpack": "npm run build && npm pack ./_build/src"
},
"dependencies": {
"axios": "~0.21.1",
"tslib": "~2.3.0"
},
"devDependencies": {
"@theintern/dev": "^0.11.0",
"@theintern/istanbul-loader": "^1.0.0-beta.3",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/glob": "^7.1.3",
"@types/moxios": "^0.4.11",
"@types/qs": "^6.5.3",
"@types/sinon": "^9.0.11",
"@types/webpack": "^5.28.0",
"@types/webpack-node-externals": "^2.5.2",
"copy-webpack-plugin": "^9.0.1",
"core-js-pure": "^3.15.2",
"glob": "^7.1.7",
"intern": "^4.9.1",
"lint-staged": "^11.0.0",
"moxios": "^0.4.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"qs": "^6.7.2",
"sinon": "^9.2.4",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"umd-compat-loader": "^2.1.2",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write"
],
"{intern,tsconfig}.json": [
"prettier --write"
]
},
"pre-commit": "precommit"
}