forked from KDWSS/fullscript-js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.28 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.28 KB
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
{
"name": "@fullscript/fullscript-js",
"version": "0.0.0",
"description": "Embeddable fullscript components",
"repository": "https://github.com/Fullscript/fullscript-js.git",
"contributors": [
"Yuhan Lee",
"Ryan O'Connor <ryan.oconnor@fullscript.com>",
"Sean Graves <sean.graves@fullscript.com>",
"Andrew Markle <andrew.markle@fullscript.com>",
"Alfred Pararajasingam <alfred.pararajasingam@fullscript.com>",
"Theodore <theodore.ambiebarango@fullscript.com>",
"Jose Jr De La Paz <josejr.delapaz@fullscript.com>",
"Aamir Dohadwala <aamir.dohadwala@fullscript.com>",
"Yamato Murakami <yamato.murakami@fullscript.com>"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"/README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build:types": "yarn tsc --emitDeclarationOnly --declarationMap --declaration --project tsconfig.types.json",
"build:babel": "yarn babel src --out-dir dist --ignore 'src/**/*.spec.ts' --extensions .ts",
"build:umd": "yarn webpack",
"watch:umd": "yarn run build:umd --watch",
"watch:types": "yarn run build:types --watch",
"watch:babel": "yarn run build:babel --watch",
"build": "concurrently \"yarn:build:*\"",
"prettier-diff": "prettier --check src",
"prettier-format": "prettier --write src",
"lint-diff": "TIMING=1 eslint --cache --cache-location '.eslintcache' src --ext .ts,.d.ts",
"lint-fix": "TIMING=1 eslint --fix --cache --cache-location '.eslintcache' src --ext .ts,.d.ts",
"test": "yarn install && jest --maxWorkers=2",
"demo:npm": "yarn --cwd ./demo/react-demo start",
"demo:umd": "yarn --cwd ./demo/javascript-demo/server dev",
"watch": "concurrently \"yarn:watch:*\""
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.7.0",
"babel-loader": "^10.0.0",
"commitizen": "^4.3.1",
"concurrently": "^9.1.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.4",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"core-js": "3.42.0",
"regenerator-runtime": "^0.14.1",
"uuid": "^11.1.0"
},
"browserslist": [
"defaults",
"last 1 version",
"> 0.2%",
"not dead",
"not IE > 0",
"ios_saf >= 10.3",
"safari >= 10.1",
"not op_mini all",
"not baidu <= 100",
"not kaiOS <= 100",
"not android <= 5.0",
"not and_uc <= 100",
"not and_qq <= 100"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master"
]
},
"packageManager": "yarn@4.9.1"
}