-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "lisanjs-monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf coverage packages/**/{.rpt2_cache,dist,.tsc_cache} website/build/",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"start": "lerna run start",
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"publish": "npm test && npm run build && lerna publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lisanjs/lisan.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lisanjs/lisan/issues"
},
"homepage": "https://github.com/lisanjs/lisan#readme",
"devDependencies": {
"@rollup/plugin-json": "4.1.0",
"@types/jest": "26.0.10",
"@types/node": "14.6.0",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"camelcase": "6.0.0",
"coveralls": "3.1.0",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"glob": "7.1.6",
"husky": "4.2.5",
"jest": "26.4.1",
"jest-extended": "0.11.5",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"rollup": "2.26.4",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "0.6.2",
"rollup-plugin-terser": "7.0.0",
"rollup-plugin-typescript2": "0.27.2",
"ts-jest": "26.2.0",
"typescript": "4.0.2"
}
}