-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.55 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
{
"name": "aspnet-auth",
"version": "1.3.2",
"description": "A standalone promise-based javascript library for authenticating with ASP.NET OWIN site.",
"author": "Craig Pretorius <craigp@codehq.co.za>",
"homepage": "https://halceyon.github.io/aspnet-auth",
"repository": "Halceyon/aspnet-auth",
"contributors": [
"Craig Pretorius <craigp@codehq.co.za>"
],
"license": "MIT",
"keywords": [],
"main": "dist/aspnet-auth.js",
"jsnext:main": "dist/aspnet-auth.es.js",
"babel": {
"presets": [
"latest",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"axios": "^0.19.0",
"browser-cookies": "^1.2.0",
"qs": "^6.7.0",
"stringify": "^5.2.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^4.0.0-canary.1",
"coveralls": "^3.0.3",
"del": "^5.0.0",
"easystatic": "^0.1.12",
"eslint-config-airbnb-base": "^14.1.0",
"eslint": "^6.0.0",
"eslint-plugin-import": "^2.9.0",
"faker": "^4.1.0",
"istanbul": "^1.1.0-alpha.1",
"json-stable-stringify": "^1.0.1",
"json-stringify-safe": "^5.0.1",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"parse-json": "^5.0.0",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"semantic-release": "^16.0.0",
"sinon": "^6.0.0",
"sinon-stub-promise": "^4.0.0",
"travis-deploy-once": "^5.0.0"
},
"scripts": {
"lint": "eslint src test",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "easystatic deploy docs --repo Halceyon/aspnet-auth",
"dev": "easystatic start docs",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"test-travis": "npm prune && npm run lint && npm run test && npm run build && npm run coveralls"
}
}