-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "copin",
"version": "2.0.1",
"description": "Opinionated Config for Typescript/Node apps",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublish": "npm test",
"pretest": "npm run build",
"test": "jest",
"test:cov": "npm test -- --coverage && open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lecstor/copin.git"
},
"keywords": [
"config"
],
"author": "jason@lecstor.com",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.0",
"@types/prettier": "^1.19.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rollup": "^1.31.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^25.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"lodash": "^4.17.4"
},
"dependencies": {
"lodash": "^4.17.4"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts"
],
"testEnvironment": "node",
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/config"
]
}
}