-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.91 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
{
"name": "corpuscule",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --parallel",
"docs": "typedoc --tsconfig ../../tsconfig.json packages && node scripts/fixDocs.js",
"lint": "run-p lint:es lint:ts",
"lint-staged": "lint-staged",
"lint:es": "eslint packages/**/*.js",
"lint:ts": "run-p tslint typecheck",
"tslint": "tslint \"packages/**/*.ts\" -e \"packages/**/+(node_modules|lib)/**/*\" -c tslint.json -p tsconfig.json -t verbose",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "run-s bootstrap build lint",
"prepublish": "run-s build",
"prettier": "prettier --write \"{packages,scripts,test}/**/*.{js,ts}\"",
"test": "karma start test/karma.conf.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corpusculejs/corpuscule.git"
},
"author": "Vlad Rindevich <rindevich.vs@gmail.com> (https://github.com/Lodin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/corpusculejs/corpuscule/issues"
},
"homepage": "https://github.com/corpusculejs/corpuscule#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@corpuscule/babel-preset": "^0.2.2",
"@corpuscule/custom-builtin-elements": "^0.3.0",
"@open-wc/testing-helpers": "^1.3.0",
"@types/jasmine": "^3.4.6",
"@types/uuid": "^3.4.6",
"babel-loader": "^8.0.6",
"eslint": "^6.6.0",
"eslint-config-poetez": "^0.1.4",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"final-form": "^4.18.6",
"husky": "^3.0.9",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.5.0",
"karma": "4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^2.0.1",
"karma-safarinative-launcher": "^1.1.0",
"karma-webpack": "^4.0.2",
"lerna": "^3.18.4",
"lint-staged": "^9.4.3",
"lit-html": "^1.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"redux": "^4.0.4",
"rimraf": "^3.0.0",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.3.3",
"storeon": "^0.9.5",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-poetez": "^2.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^3.7.2",
"universal-router": "^8.3.0",
"uuid": "^3.3.3",
"webpack": "^4.41.2"
}
}