-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.88 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
58
59
60
{
"name": "@simpleview/deep-transform",
"version": "1.0.0",
"description": "Perform complex transformations to convert one object structure into another object based on a JSON-declared schema",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"goatee": "^2.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@simpleview/eslint-config-dms": "0.0.6",
"@simpleview/mochalib": "2.0.2",
"@tsconfig/node16": "16.1.1",
"@types/mocha": "10.0.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"eslint": "8.12.0",
"eslint-plugin-react": "7.31.1",
"eslint-plugin-react-hooks": "4.6.0",
"mocha": "10.1.0",
"ts-mocha": "10.0.0",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "5.0.4"
},
"scripts": {
"build": "yarn run build:cjs && yarn run build:types",
"build:esm": "rm -rf ./dist/esm && tsc --project ./tsconfig.esm.json",
"build:cjs": "rm -rf ./dist/cjs && tsc --project ./tsconfig.cjs.json",
"build:types": "rm -rf ./dist/types && tsc --project ./tsconfig.types.json",
"docker": "./src/scripts/run || true",
"install:host": "npm install -f --package-lock false && git checkout yarn.lock",
"publish": "./src/scripts/publish",
"style": "eslint .",
"style:fix": "eslint . --fix",
"sync-state": "bash ./src/scripts/sync-state",
"test": "ts-mocha --paths './src/testing/index.test.ts' --timeout 30000",
"types": "tsc -p tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleviewinc/deep-transform.git"
},
"author": "Owen Allen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/simpleviewinc/deep-transform/issues"
},
"homepage": "https://github.com/simpleviewinc/deep-transform#readme",
"sideEffects": false
}