-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 823 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 823 Bytes
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
{
"name": "reactive",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests --runInBand",
"build": "esbuild lib/reactive.js --bundle --minify --sourcemap --target=es2015 --outfile=dist/index.js",
"dev": "nodemon --watch lib --exec \"npm run build\"",
"example": "npm run build && http-server -c-1 ./",
"e2e": "npm run build && npx cypress run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"cypress": "^13.8.1",
"esbuild": "^0.19.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.0.1"
},
"dependencies": {
"http-server": "^14.1.1"
}
}