-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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
{
"name": "smart-factory",
"version": "1.0.12",
"description": "functional programming-ready dependancy injector/ioc container library",
"main": "dist/lib/index.js",
"typings": "dist/typings/lib/index.d.ts",
"scripts": {
"dev": "TS_NODE_FILES=true nodemon --exec ts-node -- --project ./tsconfig.json ./src/example2",
"example1": "TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/example1",
"example2": "TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/example2",
"example3": "TS_NODE_FILES=true nodemon --watch ./src -e ts --exec ts-node -- --project ./tsconfig.json ./src/example3",
"build": "npm run test && tsc -p tsconfig.release.json",
"test": "jest -c jest.config.js",
"lint": "tslint -t stylish --project ./tsconfig.json",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JayJayDee/SmartFactory.git"
},
"author": "JayJayDee",
"license": "ISC",
"bugs": {
"url": "https://github.com/JayJayDee/SmartFactory/issues"
},
"homepage": "https://github.com/JayJayDee/SmartFactory#readme",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/glob": "^7.1.1",
"@types/jest": "^23.3.9",
"@types/lodash": "^4.14.118",
"@types/node": "^10.12.10",
"jest": "^23.6.0",
"nodemon": "^1.18.6",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"express": "^4.16.4",
"express-router": "0.0.1"
},
"dependencies": {
"glob": "^7.1.3",
"lodash": "^4.17.11"
},
"keywords": [
"di",
"ioc",
"container",
"dependancy"
]
}