-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "@alot/transformer",
"version": "1.1.1",
"description": "A TypeScript and Babel transformer for React Native.",
"repository": {
"type": "git",
"url": "https://github.com/alot-of-react-native/transformer"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"build-watch": "tsc -w",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"prepublish": "npm run clean && npm run build",
"prepublishOnly": "npm run test"
},
"author": "Aaron Friel <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"@types/node": "^8.0.43",
"app-root-path": "^2.0.1",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-fbjs": "^2.1.4",
"babel-preset-react-native": "^4.0.0",
"jju": "^1.3.0",
"json5": "^0.5.1",
"metro-bundler": "^0.20.0",
"source-map": "^0.6.1"
},
"devDependencies": {
"jest": "^21.2.1",
"react-native": "^0.49.3",
"rimraf": "^2.6.2",
"tslint": "^5.7.0",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.6.0-rc"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}