-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.94 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
84
85
86
87
88
89
90
91
{
"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 <[email protected]>",
"Sean Graves <[email protected]>",
"Andrew Markle <[email protected]>",
"Alfred Pararajasingam <[email protected]>",
"Theodore <[email protected]>",
"Jose Jr De La Paz <[email protected]>",
"Aamir Dohadwala <[email protected]>"
],
"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 check --integrity && 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.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-loader": "^8.1.0",
"commitizen": "^4.2.1",
"concurrently": "^5.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"core-js": "3",
"regenerator-runtime": "^0.13.5",
"uuid": "^8.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"release": {
"branches": [
"master"
]
}
}