-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "@jacekjagiello/object-validator",
"version": "0.0.7",
"description": "Simple javascript object validator",
"repository": "JacekJagiello/object-validator",
"author": "Jacek Jagiello <[email protected]>",
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=6.1.0"
},
"scripts": {
"test": "jest --coverage",
"prebuild": "rimraf dist",
"build": "tsc && rollup -c && rimraf compiled"
},
"devDependencies": {
"@types/jest": "^21.1.6",
"jest": "^21.2.1",
"prettier": "^1.8.2",
"rimraf": "^2.6.2",
"rollup": "^0.51.6",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.8.0",
"ts-jest": "^21.2.2",
"typescript": "^2.6.1"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": ["**/*.test.ts"],
"moduleFileExtensions": ["ts", "js"]
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
}
}