UNPKG

1.74 kBJSONView Raw
1{
2 "name": "@yodata/transform",
3 "version": "0.3.2",
4 "description": "declarative, JSON transformation library",
5 "main": "lib/index.js",
6 "access": "public",
7 "homepage": "https://github.com/Yodata/yodata/tree/master/packages/transform#readme",
8 "engines": {
9 "node": ">=8.10"
10 },
11 "files": [
12 "lib"
13 ],
14 "scripts": {
15 "clean": "rm -rf lib/*",
16 "commit": "npx git-cz",
17 "build": "npm run clean & babel src/ -d lib/",
18 "prepare": "npm run build",
19 "test": "xo && jest --env node"
20 },
21 "author": "yodaveduran <dave@yodata.io> (https://yodata.io/)",
22 "license": "MIT",
23 "dependencies": {
24 "@babel/runtime": "^7.4.4",
25 "caller-path": "^2.0.0",
26 "debug": "^4.1.1",
27 "fs-extra": "^7.0.1",
28 "immutable": "^4.0.0-rc.12",
29 "js-yaml": "^3.12.1",
30 "jsonata": "^1.6.4",
31 "kind-of": "^6.0.2",
32 "lodash": "^4.17.11",
33 "sort-object-keys": "^1.1.2"
34 },
35 "directories": {
36 "example": "examples",
37 "lib": "lib",
38 "test": "__tests__"
39 },
40 "devDependencies": {
41 "@babel/cli": "^7.1.2",
42 "@babel/core": "^7.2.2",
43 "@babel/plugin-proposal-class-properties": "^7.3.0",
44 "@babel/plugin-proposal-object-rest-spread": "^7.3.1",
45 "@babel/preset-env": "^7.3.1",
46 "@types/jsonata": "^1.3.1",
47 "babel-core": "^7.0.0-bridge.0",
48 "babel-eslint": "^10.0.1",
49 "babel-jest": "^24.0.0",
50 "eslint-plugin-jest": "^22.1.3",
51 "jest": "^24.0.0",
52 "regenerator-runtime": "^0.13.1",
53 "xo": "^0.24.0"
54 },
55 "keywords": [
56 "json",
57 "schema",
58 "transform",
59 "jsonschema",
60 "json-ld"
61 ],
62 "xo": {
63 "semicolon": false,
64 "plugin": "jest",
65 "envs": [
66 "node",
67 "jest/globals"
68 ],
69 "rules": {
70 "semi": [
71 "error",
72 "never"
73 ]
74 }
75 },
76 "jest": {
77 "testEnvironment": "node"
78 },
79 "gitHead": "5c00246b7bd4f1c3ce662ad75ce004a716453165"
80}