-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "tilla",
"version": "2.1.1",
"description": "Transforming objects with JavaScript made easy",
"repository": "https://github.com/TillaTheHun0/tilla",
"bugs": "https://github.com/TillaTheHun0/tilla/issues",
"main": "./dist/index.js",
"scripts": {
"build": "npm run clean && npx tsc",
"bump": "npx standard-version",
"clean": "npx rimraf dist",
"docs": "npx rimraf docs && npx typedoc --out docs --readme ./README.md src",
"prepare": "npm run build",
"lint": "npx eslint \"**/*.{ts,js}\"",
"lint:fix": "npx eslint --fix \"**/*.{ts,js}\"",
"test": "npm run lint && npx jest --silent",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"transformation",
"transformer",
"dto",
"permissions"
],
"author": "Tyler Hall",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jsdoc": "^3.6.4",
"rimraf": "^3.0.2",
"standard-version": "^8.0.1",
"ts-jest": "^25.4.0",
"typedoc": "^0.17.5",
"typescript": "^3.8.3"
}
}