-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
115 lines (115 loc) · 3.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "seemple-monorepo",
"private": true,
"version": "0.0.0-by-lerna",
"description": "Seemple.js framework",
"main": "seemple.js",
"scripts": {
"test": "npm run lint && npm run unit && cat ./packages/seemple/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"post-publish-test": "node test/post-publish/post-publish.js",
"unit": "npm run --prefix packages/seemple npm-compile && lerna run test",
"build": "lerna run build",
"lint": "eslint .",
"commit": "git-cz",
"deploy-to-git": "shx rm -rf bundle && deploy-to-git",
"upgrade": "ncu -u && npm install",
"reinstall": "rm -rf package-lock.json node_modules/ && npm i",
"patch": "lerna run npm-compile && lerna version patch --yes && npm run npm-deploy",
"minor": "lerna run npm-compile && lerna version minor && npm run npm-deploy",
"install-all": "npm install && lerna exec --concurrency 1 -- npm install",
"npm-deploy": "lerna publish from-package --yes --contents npm && npm run post-publish-test"
},
"repository": {
"type": "git",
"url": "https://github.com/finom/seemple.git"
},
"author": {
"name": "Andrey Gubanov",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/finom/seemple/issues"
},
"config": {
"deployToGit": {
"repository": "[email protected]:finom/seemple.git",
"_repository": "https://[email protected]/finom/seemple.git",
"branch": "gh-pages",
"folder": "bundle",
"script": "npm run build",
"commit": "Deploy",
"user": {
"email": "[email protected]",
"name": "Andrey Gubanov (his digital clone)"
}
},
"commitizen": {
"path": "cz-simple-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"refactor",
"perf",
"test",
"chore",
"revert"
]
},
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"homepage": "https://github.com/finom/seemple#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"app-module-path": "^2.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-istanbul": "^0.12.2",
"babel-istanbul-loader": "^0.1.0",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.1.1",
"coveralls": "^3.0.9",
"cz-simple-conventional-changelog": "0.0.1",
"deploy-to-git": "^0.1.5",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-output-todo-comments": "0.0.7",
"ghooks": "^2.0.4",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"jsdom": "^16.0.1",
"lerna": "^3.20.2",
"module-alias": "^2.2.2",
"npm-check-updates": "^4.0.1",
"npm-registry-client": "^8.6.0",
"optimist": "^0.6.1",
"shx": "^0.3.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"unminified-webpack-plugin": "^2.0.0",
"validate-commit-msg": "^2.14.0",
"webidl-conversions": "^5.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-core": "^0.6.9",
"word-wrap": "^1.2.3"
},
"dependencies": {
"expect.js": "^0.3.1"
}
}