UNPKG

1.45 kBJSONView Raw
1{
2 "name": "tosource",
3 "description": "toSource converts JavaScript objects back to source",
4 "version": "2.0.0-alpha.3",
5 "homepage": "https://github.com/marcello3d/node-tosource",
6 "repository": "git://github.com/marcello3d/node-tosource.git",
7 "author": "Marcello Bastéa-Forte <marcello@cellosoft.com> (http://marcello.cellosoft.com/)",
8 "main": "./dist/index.js",
9 "module": "./dist/index.esm.js",
10 "typings": "./dist/tosource.d.ts",
11 "keywords": [
12 "source",
13 "tosource",
14 "json",
15 "javascript object",
16 "object"
17 ],
18 "files": [
19 "dist/**/*",
20 "src/**/*"
21 ],
22 "dependencies": {},
23 "scripts": {
24 "test": "jest --watch",
25 "test-ci": "jest --coverage",
26 "build": "rollup -c",
27 "lint": "eslint src/**/*.ts",
28 "prepublishOnly": "rm -rf dist/ && npm run build"
29 },
30 "engines": {
31 "node": ">=10"
32 },
33 "devDependencies": {
34 "@types/jest": "26.0.24",
35 "@types/node": "16.4.8",
36 "@typescript-eslint/eslint-plugin": "4.28.5",
37 "@typescript-eslint/parser": "4.28.5",
38 "codecov": "3.8.3",
39 "eslint": "7.32.0",
40 "eslint-config-prettier": "8.3.0",
41 "husky": "^4.2.3",
42 "jest": "27.0.6",
43 "prettier": "2.3.2",
44 "pretty-quick": "3.1.1",
45 "rollup": "2.55.1",
46 "rollup-plugin-typescript2": "0.30.0",
47 "ts-jest": "27.0.4",
48 "tslint-config-prettier": "1.18.0",
49 "typescript": "4.3.5"
50 },
51 "jest": {
52 "preset": "ts-jest",
53 "testEnvironment": "node"
54 }
55}