-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "universal-authenticator-library",
"version": "0.3.0",
"description": "A library for allowing apps to easily use different auth providers.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"watch": "tsc -w --jsx react",
"prepare": "yarn build && sh ./build-docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOSIO/universal-authenticator-library.git"
},
"author": {
"name": "block.one",
"url": "https://block.one/"
},
"contributors": [
"Jeffrey Smith",
"Nasser Abouelazm",
"Chris Allnutt",
"Randy Torres",
"Mike Manfredi"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EOSIO/universal-authenticator-library/issues"
},
"homepage": "https://github.com/EOSIO/universal-authenticator-library#readme",
"devDependencies": {
"@blockone/eslint-config-blockone": "^3.0.0",
"@types/jest": "^25.1.4",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
},
"jest": {
"verbose": false,
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/dist"
],
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(js|ts)$",
"testEnvironment": "node"
}
}