-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "@open-node/dm",
"version": "3.0.0-alpha.2",
"description": "Dependency Injection Manager for Node.js",
"main": "dist/dm.js",
"scripts": {
"lint": "eslint ./src/*",
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --watch src",
"release": "npm run test && npm run build && npm publish --registry=https://registry.npmjs.org --access=public",
"release:github": "npm publish --registry=https://npm.pkg.github.com/"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/open-node/dm.git"
},
"keywords": [
"Dependency",
"Manager"
],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/dm/issues"
},
"homepage": "https://github.com/open-node/dm#readme",
"devDependencies": {
"@types/lodash": "^4.14.174",
"@types/jest": "^27.0.1",
"codecov": "^3.8.3",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"jest": "^27.1.0",
"lodash": "^4.17.20",
"ts-jest": "^27.0.5",
"type-fest": "^2.2.0",
"typescript": "^4.4.2"
}
}