-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "json-e",
"version": "4.4.3",
"description": "json parameterization module inspired from json-parameterization",
"main": "./src/index.js",
"browser": "./dist/index.js",
"types": "./src/index.d.ts",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"test": "yarn lint && mocha test/*_test.js",
"rollup": "rollup -c rollup.config.js",
"prepack": "npm run rollup"
},
"files": [
"src",
"dist/index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/json-e/json-e"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"json-stable-stringify-without-jsonify": "^1.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"assume": "^2.0.0",
"browserify": "^14.5.0",
"eslint": "^5.12.1",
"mocha": "^8.4.0",
"rollup": "^2.66.0",
"source-map-support": "^0.5.0",
"timekeeper": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":rebaseStalePrs"
]
}
}