-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "tosource",
"description": "toSource converts JavaScript objects back to source",
"version": "2.0.0-alpha.3",
"homepage": "https://github.com/marcello3d/node-tosource",
"repository": "git://github.com/marcello3d/node-tosource.git",
"author": "Marcello Bastéa-Forte <marcello@cellosoft.com> (http://marcello.cellosoft.com/)",
"license": "Zlib",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"typings": "./dist/tosource.d.ts",
"keywords": [
"source",
"tosource",
"json",
"javascript object",
"object"
],
"files": [
"dist/**/*",
"src/**/*"
],
"dependencies": {},
"scripts": {
"test": "jest --watch",
"test-ci": "jest --coverage",
"build": "rollup -c",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "rm -rf dist/ && npm run build"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "16.4.8",
"@typescript-eslint/eslint-plugin": "4.28.5",
"@typescript-eslint/parser": "4.28.5",
"codecov": "3.8.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"husky": "^4.2.3",
"jest": "27.0.6",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"rollup": "2.55.1",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "27.0.4",
"tslint-config-prettier": "1.18.0",
"typescript": "4.3.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}