-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "@steemfans/auth-data",
"version": "1.0.2",
"description": "To sign and auth data without a json-rpc way.",
"main": "dist/cmjs/src/index.js",
"module": "dist/es6/src/index.js",
"scripts": {
"build:cmjs": "tsc -P tsconfig.json",
"build:es6": "tsc -P tsconfig.json --module ES6 --outDir dist/es6",
"build": "yarn clean; yarn lint; yarn build:cmjs; yarn build:es6; yarn test",
"clean": "rm -rf dist/*",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest"
},
"jest": {
"verbose": true,
"rootDir": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steemfans/auth-data.git"
},
"keywords": [
"steem",
"sign",
"auth"
],
"author": "ETY001",
"license": "MIT",
"bugs": {
"url": "https://github.com/steemfans/auth-data/issues"
},
"homepage": "https://github.com/steemfans/auth-data#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@steemit/steem-js": "^0.7.11",
"@types/mocha": "^8.0.3",
"@types/node": "^14.10.2",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"babel-jest": "^26.3.0",
"crypto": "^1.0.1",
"eslint": "^7.9.0",
"jest": "^26.4.2",
"mocha": "^8.1.3",
"typescript": "^4.0.2"
}
}