forked from Whiteboard/wampy-cra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "wampy-cra",
"version": "0.1.1",
"description": "Wampy.js challenge response authentication (CRA) plugin",
"author": "Konstantin Burkalev <[email protected]> (http://ksdaemon.ru)",
"license": "MIT",
"bugs": {
"url": "https://github.com/KSDaemon/wampy-cra/issues"
},
"homepage": "https://github.com/KSDaemon/wampy-cra",
"main": "build/wampy-cra.js",
"repository": {
"type": "git",
"url": "git://github.com/KSDaemon/wampy-cra.git"
},
"dependencies": {
"crypto-js": "^3.1.8"
},
"devDependencies": {
"babel-register": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.1",
"coveralls": "^2.13.1",
"grunt": "^1.0.1",
"grunt-babel": "^7.0.0",
"grunt-contrib-uglify": "^3.0.1",
"istanbul": "^1.1.0-alpha.1",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0"
},
"keywords": [
"WAMP",
"wampy",
"CRA",
"Challenge",
"Response",
"Authentication"
],
"scripts": {
"build": "grunt",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "mocha --require babel-core/register -R spec",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --require babel-core/register -R spec"
}
}