-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "tau-react",
"version": "0.1.0",
"description": "Wrapps the tau library in React components.",
"main": "target/index.js",
"types": "target/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:rbi/tau-react.git"
},
"author": "Raik Bieniek <[email protected]>",
"license": " Apache-2.0",
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"jest": "^23.5.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.1"
},
"dependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"tau": "https://github.com/Samsung/TAU/archive/v1.1.13.tar.gz"
},
"files": [
"README.md",
"LICENSE.txt",
"target/**/*"
],
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}