-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
{
"name": "mendly",
"version": "1.7.15",
"description": "Mendly is a utility library for typescript and javascript mending the standard library.",
"author": "Simon Mika ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/utily/mendly.git"
},
"bugs": {
"url": "https://github.com/utily/mendly/issues"
},
"homepage": "https://github.com/utily/mendly#readme",
"main": "build/index.js",
"typings": "build/index.d.ts",
"browser": {
"./build/IO/fs": "./build/IO/fs.browser",
"./build/IO/path": "./build/IO/path.browser"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "source/tsconfig.test.json"
}
},
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"build/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/build/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "tslint --config tslint.json --project source",
"build": "tsc -p source",
"pretest": "npm run build",
"test": "jest",
"test:watch": "watch jest",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"clean": "rm -rf build node_modules coverage"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.5",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"tslint": "^5.20.1",
"typescript": "^4.5.4",
"watch": "^0.13.0"
},
"dependencies": {
"async-file": "^2.0.2"
}
}