-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
package.json
97 lines (97 loc) · 2.83 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "aws-amplify",
"version": "0.2.14",
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"test": "tslint 'src/**/*.ts' && jest --coverage",
"build-with-test": "npm run clean && npm test && tsc && webpack",
"build": "npm run clean && tsc && webpack",
"clean": "rimraf lib lib-esm dist",
"format": "tsfmt --useTsfmt tsfmt.json -r src/**/*.ts",
"lint": "tslint 'src/**/*.ts'",
"generate-docs-local": "typedoc --out docs src",
"generate-docs-root": "typedoc --out ../../docs src"
},
"react-native": {
"./lib/Cache": "./lib/Cache/reactnative.js",
"./lib/Common/ClientDevice": "./lib/Common/ClientDevice/reactnative.js",
"./lib/Common/RNComponents": "./lib/Common/RNComponents/reactnative.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws/aws-amplify.git"
},
"author": "Amazon Web Services",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-amplify/issues"
},
"homepage": "https://github.com/aws/aws-amplify#readme",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.24",
"@types/paho-mqtt": "^1.0.3",
"@types/zen-observable": "^0.5.3",
"awesome-typescript-loader": "^3.2.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"compression-webpack-plugin": "^1.1.3",
"find": "^0.2.7",
"jest": "^22.x",
"json-loader": "^0.5.7",
"prepend-file": "^1.3.1",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.1",
"ts-jest": "^22.0.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typedoc-dep-update": "^0.9.0",
"typescript": "2.6.2",
"typescript-formatter": "^6.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.5.5"
},
"dependencies": {
"amazon-cognito-identity-js": "^2.0.0",
"aws-sdk": "2.198.0",
"axios": "^0.17.0",
"uuid": "^3.2.1",
"paho-mqtt": "^1.0.4",
"zen-observable": "^0.8.6"
},
"jest": {
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>../../node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"setupFiles": [
"./__mocks__/SessionStorage.js",
"./__mocks__/LocalStorage.js"
],
"testEnvironment": "jsdom",
"mapCoverage": true,
"coverageThreshold": {
"global": {
"branches": 74,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}