UNPKG

978 BJSONView Raw
1{
2 "name": "@nuxt/devalue",
3 "version": "2.0.0",
4 "description": "Gets the job done when JSON.stringify can't",
5 "repository": "nuxt-contrib/devalue",
6 "license": "MIT",
7 "exports": {
8 ".": {
9 "require": "./dist/devalue.js",
10 "import": "./dist/devalue.mjs"
11 }
12 },
13 "main": "./dist/devalue.js",
14 "module": "./dist/devalue.mjs",
15 "types": "./dist/index.d.ts",
16 "files": [
17 "dist"
18 ],
19 "scripts": {
20 "build": "siroc build",
21 "prepack": "yarn build",
22 "lint": "eslint --ext .ts,.js .",
23 "test": "yarn lint && jest",
24 "release": "yarn test && standard-version && git push --follow-tags && npm publish"
25 },
26 "devDependencies": {
27 "@nuxtjs/eslint-config-typescript": "^6.0.0",
28 "@types/jest": "^26.0.23",
29 "@types/mocha": "^8.2.2",
30 "@types/node": "^15.3.0",
31 "eslint": "^7.26.0",
32 "jest": "^26.6.3",
33 "siroc": "^0.10.0",
34 "standard-version": "^9.3.0",
35 "ts-jest": "^26.5.6",
36 "typescript": "^4.2.4"
37 }
38}