-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@valeera/ghost",
"version": "0.1.0",
"description": "",
"main": "build/Ghost.js",
"repository": "ValeeraJS/Ghost",
"jsnext:main": "build/Ghost.module.js",
"module": "build/Ghost.module.js",
"types": "build/Ghost.d.ts",
"files": [
"build",
"LICENSE",
"package.json",
"README.md",
"src"
],
"directories": {
"docs": "docs",
"examples": "examples",
"src": "src"
},
"scripts": {
"build": "rollup -c scripts/rollup.config.js",
"build-legacy": "rollup -c scripts/rollup.config.legacy.js",
"build-closure": "google-closure-compiler --compilation_level=ADVANCED_OPTIMIZATIONS --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs scripts/externs.js --language_in=ECMASCRIPT_NEXT --language_out=ECMASCRIPT_NEXT --js build/Ghost.js --js_output_file build/Ghost.min.js",
"build-closure-legacy": "google-closure-compiler --compilation_level=ADVANCED_OPTIMIZATIONS --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs scripts/externs.js --language_in=ECMASCRIPT5 --language_out=ECMASCRIPT5 --js build/Ghost.legacy.js --js_output_file build/Ghost.legacy.min.js",
"build-all": "npm run build && npm run build-legacy && npm run build-closure && npm run build-closure-legacy",
"start": "npm run dev",
"lint": "eslint src --ext js --ext ts",
"test": "nyc --reporter=html --reporter=text mocha --require esm",
"travis": "npm run lint && npm test"
},
"keywords": [
"Ghost",
"utils",
"proxy",
"valeera",
"decorator",
"tools"
],
"author": "hypnosnova",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.1",
"chai": "4.3.3",
"concurrently": "6.0.0",
"eslint": "7.21.0",
"eslint-config-valeera": "0.1.1",
"eslint-plugin-html": "6.1.2",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-tslint": "3.1.0",
"esm": "3.2.25",
"google-closure-compiler": "20210302.0.0",
"http-server": "0.12.3",
"mocha": "*",
"nyc": "15.1.0",
"prettier": "2.2.1",
"rollup": "2.40.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-typescript2": "0.30.0",
"tslib": "^2.1.0",
"typescript": "4.2.3"
},
"jspm": {
"files": [
"package.json",
"LICENSE",
"README.md",
"build/Ghost.js",
"build/Ghost.min.js",
"build/Ghost.module.js",
"build/Ghost.legacy.js",
"build/Ghost.legacy.min.js",
"build/Ghost.legacy.module.js"
],
"directories": {}
}
}