-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 KB
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
{
"author": {
"name": "Syslogic"
},
"bugs": {
"url": "https://github.com/SyslogicNL/graph-serializer/issues"
},
"bundleDependencies": false,
"dependencies": {},
"deprecated": false,
"description": "Typescript serializer for converting betweet JSON data and Object graphs",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-rename": "^1.4.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"mocha": "^6.2.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"directories": {
"test": "test"
},
"files": [
"dist"
],
"homepage": "https://github.com/SyslogicNL/graph-serializer#readme",
"keywords": [
"serializer",
"typescript",
"object",
"object",
"graph",
"decorators"
],
"license": "MIT",
"main": "dist/graph-serializer.js",
"exports": {
"require": "./dist/graph-serializer.js",
"import": "./dist/esm/graph-serializer.js"
},
"name": "@syslogic/graph-serializer",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/SyslogicNL/graph-serializer.git"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/_mocha --require ts-node/register ./test/**/*.ts",
"gulp": "gulp",
"build:cjs": "NODE_OPTIONS=--no-experimental-fetch gulp build:cjs",
"build:esm": "NODE_OPTIONS=--no-experimental-fetch gulp build:esm",
"build": "npm run build:cjs && npm run build:esm"
},
"version": "0.6.0",
"typings": "dist/graph-serializer.d.ts",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}