This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "chitu",
"version": "0.8.1",
"description": "JavaScript Utilities (Chuck Her In The Ute)",
"main": "dist/chitu.js",
"module": "dist/chitu.es.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc --pretty",
"format": "prettier --write \"src/**/*.ts\"",
"build": "microbundle -e src/index.ts",
"clean": "rimraf dist",
"check": "run-s compile lint test",
"test": "jest",
"lint": "tslint -c tslint.json src/**/*.ts",
"prebuild": "run-s format check clean",
"prepublish": "npm run build",
"coverage": "codecov",
"docs": "typedoc --mode modules --out ./docs src"
},
"repository": {
"type": "git",
"url": "https://github.com/tymondesigns/chitu.git"
},
"author": "Sean Tymon <tymon148@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tymondesigns/chitu/issues"
},
"homepage": "https://github.com/tymondesigns/chitu",
"devDependencies": {
"@types/jest": "^23.0.0",
"codecov": "^3.0.0",
"jest": "^22.3.0",
"microbundle": "^0.4.4",
"npm-run-all": "^4.1.2",
"prettier": "^1.8.2",
"rimraf": "^2.5.1",
"ts-jest": "^23.0.0",
"tslint": "^5.8.0",
"typedoc": "^0.11.0",
"typescript": "^2.6.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/src/**/*.spec.ts"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}