forked from lud2k/ts-react-display-name
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "ts-react-display-name",
"version": "1.2.2",
"description": "Typescript transformer that adds displayName to React components",
"keywords": [
"react",
"typescript",
"displayName",
"transformer"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run lint && npm run unit-tests && npm run prettier-check",
"unit-tests": "mocha --require ts-node/register test/{**/,}*-test.ts",
"lint": "tslint -c tslint.json src/**/* test/**/*",
"prettier-check": "prettier --config .prettierrc --check \"{{src,test}/**/*,*}.ts\"",
"prettier": "prettier --config .prettierrc --write \"{{src,test}/**/*,*}.ts\"",
"build": "tsc",
"watch-tests": "mocha --watch --require ts-node/register test/{**/,}*-test.ts",
"clean": "rm -fr dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lud2k/ts-react-display-name.git"
},
"author": "Ludovic Cabre",
"license": "MIT",
"bugs": {
"url": "https://github.com/lud2k/ts-react-display-name/issues"
},
"homepage": "https://github.com/lud2k/ts-react-display-name#readme",
"devDependencies": {
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2"
}
}