forked from EOSIO/universal-authenticator-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 KB
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
{
"name": "universal-authenticator-library",
"version": "0.1.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",
"clean-build": "rm -rf dist && yarn build",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"build-publish": "npm run build && webpack",
"watch": "tsc -w --jsx react",
"prepublish": "yarn clean-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"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EOSIO/universal-authenticator-library/issues"
},
"homepage": "https://github.com/EOSIO/universal-authenticator-library#readme",
"devDependencies": {
"@blockone/tslint-config-blockone": "^1.0.0",
"@types/jest": "^23.3.13",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typedoc": "^0.14.0",
"typescript": "^3.1.6",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
},
"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"
}
}