forked from mohsen1/json-formatter-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 KB
/
package.json
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
{
"name": "json-formatter-js",
"version": "2.3.4",
"description": "JSON Formatter core library ",
"main": "dist/json-formatter.cjs.js",
"module": "dist/json-formatter.esm.js",
"browser": "dist/json-formatter.umd.js",
"types": "dist/src/index.d.ts",
"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"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohsen1/json-formatter-js.git"
},
"keywords": [
"json"
],
"author": "Mohsen Azimi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohsen1/json-formatter-js/issues"
},
"homepage": "https://github.com/mohsen1/json-formatter-js#readme",
"devDependencies": {
"@types/jest": "^24.0.19",
"css-loader": "^3.2.0",
"jest": "^28.1.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"rollup": "^1.25.1",
"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": "^28.0.2",
"typescript": "^3.6.4",
"webpack-dev-server": "^4.9.0"
}
}