-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "@maniator/servable",
"version": "1.0.0",
"description": "From scratch observable",
"main": "lib/index.js",
"type": "module",
"scripts": {
"test": "jest",
"prebuild": "rimraf dist lib",
"build": "yarn rollup",
"watch": "yarn rollup -w",
"rollup": "rollup -c",
"release": "node release.js",
"exampleDemo": "yarn build && yarn docs",
"predocs": "rimraf docs",
"docs": "jsdoc -c jsdoc.json",
"serve": "npx serve"
},
"author": "Naftali Lubin",
"license": "MIT",
"bugs": {
"url": "https://github.com/maniator/servable/issues"
},
"homepage": "https://github.com/maniator/servable#readme",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maniator/servable.git"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/preset-env": "7.19.3",
"docdash": "^1.2.0",
"inquirer": "^9.0.0",
"jest": "29.1.2",
"jsdoc": "^3.6.7",
"rimraf": "^3.0.2",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.5",
"shelljs": "^0.8.3"
}
}