-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.84 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
{
"name": "@footron/messaging",
"version": "0.1.6",
"author": "BYU PCCL",
"main": "lib/index.js",
"unpkg": "dist/footron-messaging.development.js",
"types": "types/index.d.ts",
"module": "es/index.js",
"license": "MIT",
"scripts": {
"build:umd": "rimraf ./dist && cross-env NODE_ENV=production rollup -c",
"build:es": "rimraf ./es && babel --extensions .ts,.tsx ./src --out-dir es",
"build:commonjs": "rimraf ./lib && tsc && cross-env BABEL_ENV=commonjs babel --extensions .ts,.tsx ./src --out-dir lib",
"build:types": "rimraf ./types && tsc --project ./tsconfig.types.json && replace 'import type' 'import' ./types -r --silent && replace 'export type' 'export' ./types -r --silent",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd && yarn build:types"
},
"files": [
"dist",
"es",
"lib",
"types"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-replace": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-eslint": "^10.1.0",
"babel-plugin-const-enum": "^1.1.0",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"prettier": "^2.3.2",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.53.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-size": "^0.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
}
}