-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "forge-di",
"version": "12.1.2",
"description": "a dependency injector for node.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/nkohari/forge.git"
},
"author": {
"name": "Nate Kohari",
"email": "[email protected]",
"url": "http://nate.io/"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"command-line-args": "^5.2.1",
"esbuild": "^0.16.13",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"rimraf": "2.6.1",
"ts-mocha": "^2.0.0",
"typescript": "^3.3.3"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 120
},
"scripts": {
"build": "npm run build:library && npm run build:types",
"build:library": "node build.js",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"dev": "node build.js --watch",
"test": "ts-mocha --reporter spec test/**/*.tests.ts"
}
}