-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "edits",
"version": "0.1.0",
"description": "",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "http-server -p 3000 ./docs",
"build": "npm-run-all clean --parallel build:*",
"build:lib": "rollup --config rollup/rollup.config.js",
"build:lib-min": "rollup --config rollup/rollup.config.min.js",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf dist",
"test": "jest",
"prepublishOnly": "npm-run-all test build"
},
"author": "Richie Casto (https://github.com/rcasto)",
"homepage": "https://github.com/rcasto/edits#readme",
"repository": {
"type": "git",
"url": "https://github.com/rcasto/edits.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.19.0",
"@babel/preset-env": "7.19.0",
"@babel/preset-typescript": "7.18.6",
"@rollup/plugin-typescript": "8.5.0",
"@types/jest": "29.0.1",
"babel-jest": "29.0.3",
"http-server": "14.1.1",
"jest": "29.0.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.79.0",
"rollup-plugin-terser": "7.0.2",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.3"
}
}