-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "@apicurio/core",
"version": "0.1.3",
"description": "A library containing some common classes used by various other Apicurio projects.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Apicurio/apicurio-ts-core"
},
"main": "bundles/apicurio-ts-core.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"typescript": {
"definition": "index.d.ts"
},
"scripts": {
"test": "karma start karma-headless.js",
"dev": "karma start karma-chrome.js",
"clean": "rimraf dist",
"compile": "tsc -p ./tsconfig-package.json",
"rollup": "mkdirp ./dist/bundles && rollup -c rollup.config.js",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"package": "rimraf dist && tsc -p tsconfig-package.json && cpx package.json dist && cpx module/*.* dist && mkdirp ./dist/bundles && rollup -c rollup.config.js"
},
"dependencies": {
"core-js": "2.6.11"
},
"devDependencies": {
"@types/jasmine": "3.6.0",
"cpx": "1.5.0",
"mkdirp": "0.5.1",
"rimraf": "3.0.2",
"jasmine-core": "3.6.0",
"js-yaml": "3.14.0",
"karma": "5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-jasmine": "4.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-summary-reporter": "1.9.0",
"karma-typescript": "5.2.0",
"rollup": "0.68.2",
"rollup-plugin-commonjs": "8.4.1",
"typescript": "4.0.5"
}
}