-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "aws-cognito-wrapper",
"version": "1.1.2",
"description": "This is a wrapper for the amazon-cognito-identity-js project.",
"main": "dist/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test BABEL_ENV=test nyc mocha-webpack tests/unit --recursive",
"build": "mkdir -p dist && webpack --progress",
"build-watch": "mkdir -p dist && webpack -d --progress --colors --watch",
"lint": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CharlTruter/aws-cognito-wrapper.git"
},
"author": "Cbarl Truter",
"license": "ISC",
"bugs": {
"url": "https://github.com/CharlTruter/aws-cognito-wrapper/issues"
},
"homepage": "https://github.com/CharlTruter/aws-cognito-wrapper#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.1",
"cross-env": "^5.0.5",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"json-loader": "^0.5.7",
"mocha": "^3.5.0",
"mocha-webpack": "^0.7.0",
"nyc": "^11.1.0",
"sinon": "^3.2.0",
"webpack": "^3.5.2",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"amazon-cognito-identity-js": "^1.19.0"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"exclude": [
".tmp",
"tests",
"node_modules"
]
}
}