-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "json-formatter-js",
"version": "2.5.6",
"description": "JSON Formatter core library ",
"main": "dist/json-formatter.cjs",
"module": "dist/json-formatter.mjs",
"browser": "dist/json-formatter.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/json-formatter.mjs",
"require": "./dist/json-formatter.cjs",
"browser": "./dist/json-formatter.umd.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/json-formatter.cjs"
}
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c rollup.dev.config.js",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "test/spec.ts",
"moduleNameMapper": {
".*\\.less$": "<rootDir>/mocks/less.ts"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohsen1/json-formatter-js.git"
},
"keywords": [
"json"
],
"author": "Mohsen Azimi <me@azimi.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohsen1/json-formatter-js/issues"
},
"homepage": "https://github.com/mohsen1/json-formatter-js#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"css-loader": "^7.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"prettier": "^3.3.2",
"rollup": "^2.79.2",
"rollup-plugin-less": "^1.1.2",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2",
"webpack-dev-server": "^5.0.4"
}
}