-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"author": {
"name": "Silas B. Domingos",
"email": "[email protected]",
"url": "https://balmante.eti.br"
},
"name": "@singleware/injection",
"description": "Singleware class injection package.",
"license": "MIT",
"version": "1.0.23",
"main": "release/source/index.js",
"types": "release/types/index.d.ts",
"keywords": [
"IoC pattern",
"dependency injection",
"class injection"
],
"repository": {
"type": "git",
"url": "https://github.com/singleware/injection"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@singleware/class": "^1.1.14"
},
"devDependencies": {
"prettier": "^1.17.1",
"typescript": "^3.2.4"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"scripts": {
"build": "npm run clean && npm run make",
"clean": "rm -rf ./release",
"make": "npm run make-source && npm run make-examples",
"make-source": "npm run compile-source && npm run update-source",
"compile-source": "tsc -p ./source",
"update-source": "cp -Rf ./source/*.d.ts ./release/types",
"make-examples": "npm run compile-examples",
"compile-examples": "tsc -p ./examples"
}
}