-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "@streem/sdk-node",
"version": "0.3.1",
"description": "Streem library to interact with the Streem API and generate Embedded SSO tokens",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": "https://github.com/streem/streem-sdk-node",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "run-s build test:*",
"test:unit": "nyc --silent ava",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
"clean": "trash build test",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('streem-sdk-node must be installed with Yarn: https://yarnpkg.com/')\""
},
"engines": {
"node": ">=10"
},
"dependencies": {
"node-jose": "^2.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/jwt-decode": "^2.2.1",
"@types/node-jose": "^1.1.5",
"ava": "2.2.0",
"jwt-decode": "^2.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"trash-cli": "^3.0.0",
"typescript": "^3.5.3"
},
"ava": {
"failFast": true,
"files": [
"build/main/**/*.spec.js"
],
"sources": [
"build/main/**/*.js"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}