-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "object-graph-as-json",
"version": "2.0.0",
"description": "Library for representing arbitrary javascript objects in JSON.",
"main": "target/cjs/index.js",
"module": "target/esm/index.js",
"scripts": {
"clean": "rimraf target",
"build:cjs": "BABEL_MODULES=cjs babel src/ --out-dir target/cjs/ --ignore src/**/*.test.js",
"build:esm": "BABEL_MODULES=false babel src/ --out-dir target/esm/ --ignore src/**/*.test.js",
"build:umd": "webpack --mode=production",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd",
"coverage": "jest --coverage",
"lint": "eslint src scripts",
"test": "jest",
"test:watch": "jest --watch",
"test:updateSnapshot": "jest --updateSnapshot",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brokensandals/object-graph-as-json.git"
},
"keywords": [
"serialize",
"json"
],
"author": "Jacob Williams <[email protected]> (https://brokensandals.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/brokensandals/object-graph-as-json/issues"
},
"homepage": "https://github.com/brokensandals/object-graph-as-json#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"files": [
"src",
"target"
]
}