-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"private": true,
"name": "makkiijs",
"title": "makkiijs",
"version": "1.0.0",
"description": "",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "lerna bootstrap",
"compile": "lerna run tsc",
"lint": "eslint packages/**/src/**/*.{js,ts} --fix",
"doc": "typedoc --options ./typedoc.js && lerna run doc",
"publish": "lerna bootstrap && lerna run clean && lerna run tsc && yarn doc && lerna publish",
"deploy_apidoc": "cross-env RELEVANT_PATH=makkii-js node ./scripts/deploy.js",
"test": "mocha --opts mocha.opts",
"postpublish": "yarn deploy_apidoc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run compile && git add ."
}
},
"lint-staged": {
"packages/**/src/**/*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"keywords": [
"react-native"
],
"author": {
"name": "Cheng Chen",
"email": "chen@aion.network"
},
"license": "Apache-2.0",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"dependencies": {
"@babel/runtime": "^7.5.5"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"assert": "^2.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"cross-env": "^6.0.3",
"documentation": "^13.2.5",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"expect.js": "^0.3.1",
"husky": "^3.1.0",
"lerna": "^3.18.3",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"mocha-circleci-reporter": "^0.0.3",
"node-ssh": "^6.0.0",
"prettier": "^1.19.1",
"prompt": "^1.0.0",
"tslint": "^5.20.1",
"typedoc": "^0.15.3",
"typescript": "^3.7.2"
}
}