-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.3 KB
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
{
"name": "typescript-react-intl",
"version": "0.4.1",
"description": "Extracts string messages from TypeScript React components or ts files that use React Intl.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "yarn run format:auto && tsc && yarn run _test",
"build-ci": "tsc && yarn run format:check && yarn run _test",
"format:auto": "prettier --config .prettierrc *.ts --write",
"format:check": "prettier --config .prettierrc *.ts --list-different",
"start": "tsc -w",
"test": "tsc && yarn run _test && echo Please run 'yarn build' before you commit",
"_test": "tslint -c tslint.json '*.ts' && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bang88/typescript-react-intl.git"
},
"files": [
"lib"
],
"keywords": [
"react intl typescript"
],
"author": "bang88",
"license": "MIT",
"bugs": {
"url": "https://github.com/bang88/typescript-react-intl/issues"
},
"homepage": "https://github.com/bang88/typescript-react-intl#readme",
"dependencies": {
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/react": "^15.0.27",
"@types/react-intl": "^2.2.9",
"ava": "^0.19.1",
"prettier": "1.10.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0"
}
}