-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 910 Bytes
/
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
{
"name": "sw-class-schema",
"repository": {
"type": "git",
"url": "https://github.com/swanest/sw-class-schema"
},
"version": "1.1.12",
"scripts": {
"test": "mocha --opts ./src/tests/mocha.opts ./src/tests/*.ts",
"build": "rm -rf dist && tsc && rm -rf ./dist/tests",
"prepublish": "npm run build"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Swanest",
"license": "MIT",
"files": [
"dist/"
],
"dependencies": {
"class-validator": "^0.6.8",
"lodash": "^4.17.11",
"sw-class-sanitizer": "^0.1.0",
"sw-logger": "^1.2.5",
"when": "^3.7.7"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.120",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.39",
"@types/when": "^2.4.28",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^8.0.2",
"typescript": "^3.2.4"
}
}