-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "easy-models",
"version": "0.3.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "gulp",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/*.spec.ts"
],
"coverageDirectory": ".coverage"
},
"author": "Mihail Cristian Dumitru",
"license": "MIT",
"repository": "github:Xzya/easy-models",
"bugs": "https://github.com/Xzya/easy-models/issues",
"homepage": "https://github.com/Xzya/easy-models#readme",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash.get": "^4.4.4",
"@types/lodash.isequal": "^4.5.3",
"@types/lodash.set": "^4.3.4",
"@types/node": "^10.5.4",
"del": "^3.0.0",
"gulp": "^4.0.0",
"jest": "^23.4.2",
"ts-jest": "^23.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": "^3.0.1"
}
}