-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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": "herm-js-monorepo",
"version": "0.0.1",
"description": "JS Network framework for powerful real-time offline first progressive web apps",
"main": "index.js",
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"test": "lerna run lint; jest --coverage; cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepare": "lerna run prepare",
"publish": "yarn build; yarn copy-readme; lerna publish",
"lerna": "lerna",
"build": "lerna run build",
"lint": "lerna run lint",
"copy-readme": "cpy ./README.md ./packages/herm-js/",
"clean": "rimraf packages/**/lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azukaar/herm-js.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"herm-js",
"javascript",
"framework",
"data",
"sync",
"conflict",
"progressive",
"apps",
"offline"
],
"babel": {
"presets": [
"env"
]
},
"author": "Yann Stepienik",
"license": "Apache 2.0",
"devDependencies": {
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"cpy-cli": "^2.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"jest": "^22.4.2",
"lerna": "^2.9.0",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13"
}
}