-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.98 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
71
72
73
{
"name": "yaob",
"version": "0.3.12",
"description": "Bridges an object-oriented API across a messaging layer",
"repository": {
"type": "git",
"url": "git@github.com:Airbitz/yaob.git"
},
"license": "MIT",
"main": "lib/yaob.cjs.js",
"module": "lib/yaob.js",
"types": "src/index.d.ts",
"files": [
"CHANGELOG.md",
"docs/*",
"lib/*",
"package.json",
"README.md",
"src/*"
],
"scripts": {
"build": "rimraf lib && rollup -c",
"build:test": "rollup -c test/rollup.config.js",
"fix": "npm run lint -- --fix",
"flow": "flow",
"lint": "eslint --ext .js,.ts .",
"precommit": "lint-staged && flow && npm test && npm run build",
"prepare": "npm run build",
"pretest": "npm run build:test",
"test": "mocha --require source-map-support/register build/tests.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"dependencies": {
"rfc4648": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/preset-env": "^7.14.2",
"@babel/preset-flow": "^7.13.13",
"@rollup/plugin-babel": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"assert-log": "^0.2.2",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"flow-bin": "^0.105.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"mocha": "^8.4.0",
"prettier": "^2.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.48.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-flow-entry": "^0.3.5",
"source-map-support": "^0.5.19",
"typescript": "^4.1.2"
}
}