forked from confetti/yayson
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
61
62
63
{
"name": "yayson",
"version": "3.0.0",
"description": "A library for serializing and reading JSON API standardized data in JavaScript.",
"main": "src/yayson.js",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"scripts": {
"test": "mocha",
"build": "webpack --config webpack.dist.js",
"test-browser": "webpack-dev-server --config webpack.browser.js",
"preversion": "npm test && npm run build && git add dist/yayson.js",
"postversion": "git push --follow-tags origin master",
"release": "npm version minor",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git://github.com/confetti/yayson.git"
},
"keywords": [
"json-api",
"json",
"api",
"response",
"format",
"serialization",
"deserialization",
"yay",
"wow",
"omg"
],
"author": "Johannes Edelstam <[email protected]>, Jonny Strömberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/confetti/yayson/issues"
},
"homepage": "https://github.com/confetti/yayson",
"browserslist": [
"defaults",
"not IE 11"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"chai": "^4.3.7",
"core-js": "^3.27.2",
"eslint": "^8.33.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}