-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
61
62
63
{
"name": "react-native-ncmb",
"version": "0.2.2",
"main": "index.js",
"description": "NCMB for React Native",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/satsuki0221/react-native-ncmb"
},
"scripts": {
"dev": "tsc --p ./tsconfig_dev.json -w",
"build": "tsc",
"webdev": "webpack -w",
"webbuild": "webpack",
"test": "jest"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.ts$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/*.test.ts"
]
},
"dependencies": {
"@types/jssha": "^0.0.29",
"jssha": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^21.1.9",
"babel-core": "^6.24.1",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.14.0",
"flow-bin": "^0.46.0",
"flow-typed": "^2.1.2",
"jest": "^22.0.4",
"prettier": "^1.9.2",
"ts-jest": "^22.0.0",
"ts-loader": "^2.3.3",
"tslint": "^5.6.0",
"tslint-config-airbnb": "^5.2.1",
"tslint-config-prettier": "^1.6.0",
"tslint-plugin-prettier": "^1.3.0",
"tsutils": "^2.14.0",
"typescript": "^2.4.2",
"webpack": "^2.5.1"
}
}