This repository has been archived by the owner on Oct 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "solid-auth-tls",
"version": "0.1.2",
"engines": {
"node": "^6.0"
},
"description": "Authentication library for Solid browser-based clients",
"main": "./lib/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"build:lib": "babel src -d lib",
"build:umd": "webpack",
"build": "npm run build:lib && npm run build:umd",
"prepublish": "npm run test && npm run build",
"standard": "standard src/*.js test/*.js",
"pretest": "npm run standard",
"test": "nyc --reporter=html mocha",
"coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/solid-auth-tls"
},
"keywords": [
"authentication",
"tls",
"webid",
"solid",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"data",
"rest"
],
"author": "Dmitri Zagidulin <dzagidulin@gmail.com>",
"contributors": [
"Daniel Friedman <dfriedman58@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/solid-auth-tls/issues"
},
"homepage": "https://github.com/solid/solid-auth-tls",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.2",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"proxyquire": "^1.7.11",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"standard": "^5.4.1",
"webpack": "^2.3.3"
}
}