-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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": "@joker.front/core",
"version": "1.3.67",
"description": "",
"main": "./dist/bundle.js",
"module": "./dist/bundle.es.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/bundle.es.js",
"require": "./dist/bundle.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/*",
"types/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jokers-pub/front-core.git"
},
"scripts": {
"test": "jest",
"test:temp": "jest test/other/event.spec.ts",
"build": "joker_build_library --sourcemap=false",
"build:prod": "joker_build_library --sourcemap=false --terser",
"release": "npm run test && npm run build && joker_release_library",
"release:prod": "npm run test && npm run build:prod && npm publish --access public --registry https://registry.npmjs.org/"
},
"author": "Zohar",
"license": "MIT",
"homepage": "https://front.jokers.pub",
"keywords": [
"joker",
"front"
],
"dependencies": {
"@joker.front/ast": "^1.3.24"
},
"devDependencies": {
"@joker.front/library-cli": "^1.2.14",
"@joker.front/sfc": "^1.1.15",
"@joker.front/shared": "^1.5.30",
"@types/jest": "^27.5.2",
"@types/node": "^20.5.7",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"sass": "^1.69.5"
}
}