-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "react-native-gtk",
"version": "0.0.1-prerelease.10",
"description": "react native for building desktop apps with GTK3",
"author": "James Batt",
"license": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/Place1/react-native-gtk"
},
"directories": {
"dist": "dist"
},
"scripts": {
"prepublish": "npm run build",
"test": "jest",
"lint": "tslint 'src/**/*.{ts,tsx}' --project ./",
"build": "npm run clean && tsc",
"example": "ts-node example/TodoApp.tsx",
"clean": "rm -r ./dist || true"
},
"devDependencies": {
"@types/jest": "^21.1.1",
"@types/node": "^8.0.28",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/react-native": "^0.52.5",
"jest": "^21.2.1",
"react": "16.0.0-alpha.6",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.6.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2"
},
"dependencies": {
"node-gir": "0.1.3",
"react-dom": "16.0.0-alpha.6",
"yoga-layout": "1.6.0"
},
"peerDependencies": {
"react": "16.0.0-alpha.6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.test.(ts|tsx|js)"
]
}
}