-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "ozone-api-authentication",
"version": "6.3.0",
"publishConfig": {
"access": "public"
},
"description": "low level wrapper around ozone login, logout and authentication api",
"scripts": {
"prepublish": "npm run build",
"build": "npm run tslint && npm run compile",
"compile": "../../../node_modules/.bin/tsc",
"tslint": "../../../node_modules/.bin/tslint --project tsconfig.json",
"test:debug": "../../../node_modules/.bin/karma start",
"test": "../../../node_modules/.bin/karma start --single-run",
"doc": "../../../node_modules/.bin/typedoc --excludeExternals --out doc/ src/"
},
"repository": {
"type": "git",
"url": "https://github.com/taktik/ozone-components/packages/ozone-api/ozone-api-authentication"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "",
"license": "ISC",
"dependencies": {
"ozone-api-request": "^6.2.4",
"ozone-config": "^6.3.0"
},
"devDependencies": {
"ozone-type": "^6.2.4",
"taktik-polymer-typescript": "^6.2.4"
}
}