-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
54
55
56
57
{
"name": "timod",
"description": "a tiny models definition library for JavaScript",
"version": "0.0.1",
"main": "cjs/index.js",
"module": "esm/index.js",
"browser": "dist/timod.umd.js",
"license": "MIT",
"files": [
"dist",
"esm",
"cjs",
"types",
"yarn.lock",
"!*.map",
"!**/*.map",
"!tsconfig.tsbuildinfo"
],
"scripts": {
"dev": "npm run build -- -w",
"build": "rollup -c",
"test": "npm run build && jest -u",
"cov": "npm run test -- --coverage",
"lint": "eslint src --fix",
"prepublishOnly": "npm run build",
"release": "publish",
"ci": "npm run lint && npm run cov"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"npm": {
"lockfile": "enable"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.0.25",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"jest": "^25.5.4",
"jest-cli": "^24.8.0",
"jest-serializer-path": "^0.1.15",
"rollup": "^2.45.2",
"rollup-plugin-multi-input": "1.0.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^25.2.1",
"typescript": "^4.2.2"
}
}