This repository was archived by the owner on Feb 14, 2025. It is now read-only.
-
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.48 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.48 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": "@modstrap/format",
"version": "1.0.0",
"description": "Formats field content, price and data volume into human-readable format.",
"main": "dist/Format.js",
"types": "dist/Format.d.ts",
"author": "Callisto (https://github.com/callisto2410)",
"license": "MIT",
"homepage": "https://github.com/callisto2410/modstrap-format",
"bugs": {
"url": "https://github.com/callisto2410/modstrap-format/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/callisto2410/modstrap-format.git"
},
"scripts": {
"build": "npx tsc --project tsconfig.json",
"build:all": "npm run build:clean && npm run build && npm run build:demo",
"build:demo": "npx webpack --config webpack.config.js",
"build:demo:watch": "npx webpack --watch --config webpack.config.js",
"build:demo:server": "npx live-server ./demo",
"build:clean": "npx rimraf .cache dist demo/dist *.tgz",
"build:pack": "npm run build:clean && npm run build && npm pack"
},
"devDependencies": {
"@types/cleave.js": "^1.4.4",
"@types/node": "^14.14.20",
"autoprefixer": "^10.2.1",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"live-server": "^1.2.1",
"postcss-loader": "^4.0.1",
"rimraf": "^3.0.2",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^4.0.2",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"cleave.js": "^1.6.0"
}
}