-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "di0",
"version": "1.0.0",
"description": "Dependency injection for ES6 classes",
"main": "./dist/index.js",
"types": "./src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/snatalenko/di0.git"
},
"directories": {
"test": "tests"
},
"scripts": {
"test:coverage": "nyc --reporter=lcov --reporter=text-summary node_modules/.bin/_mocha tests/unit/",
"pretest:coveralls": "npm run test:coverage",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"posttest:coveralls": "rm -rf ./coverage",
"pretest": "npm run build",
"test": "mocha tests/unit/",
"changelog": "conventional-changelog -n ./scripts/changelog -i CHANGELOG.md -s",
"build": "tsc",
"prepare": "npm run build",
"preversion": "npm test",
"version": "npm run changelog && git add CHANGELOG.md"
},
"keywords": [
"dependency",
"injection",
"container",
"di",
"es6"
],
"author": "@snatalenko",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"conventional-changelog": "^3.1.25",
"coveralls": "^3.1.1",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"typescript": "^4.5.5"
}
}