-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.35 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
{
"name": "ryuu.js",
"version": "6.0.2-alpha.0",
"description": "Ryuu JavaScript Utility Library",
"main": "dist/domo.js",
"sideEffects": [
"./src/domo.ts",
"./src/init.ts",
"./dist/domo.js"
],
"files": [
"dist/domo.js",
"dist/domo.js.map",
"dist/**/*.d.ts",
"LICENSE"
],
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/jest": "^29.5.14",
"http-server": "^14.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.3.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.88.0",
"webpack-cli": "^4.9.1"
},
"types": "dist/domo.d.ts",
"scripts": {
"test": "jest --silent",
"coverage": "jest --coverage --silent",
"build": "rm -rf dist && mkdir dist && NODE_ENV=production webpack && cp dist/domo.js demo/domo.js",
"build:demo": "node demo/build.js",
"clean:demo": "node demo/clean.js",
"release": "npm run build && npm publish",
"releaseAlpha": "npm run build && npm publish --tag alpha",
"releaseBeta": "npm run build && npm publish --tag beta",
"bumpAlpha": "npm run build && npm run bump -- --prerelease alpha",
"bumpBeta": "npm run build && npm run bump -- --prerelease beta",
"bump": "standard-version"
},
"author": "Domo"
}