-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
64
{
"name": "jsona",
"description": "Provide data formatters (data model builder & json builder) to work with JSON API specification v1.0 in your JavaScript / TypeScript code",
"version": "1.12.1",
"keywords": [
"json-api",
"jsonapi",
"json:api",
"json-api-redux",
"json api redux",
"json-api angular",
"json api typescript",
"data formatter",
"data converter",
"data serializer",
"formatter",
"converter",
"serializer",
"json api json",
"json",
"redux-object",
"rest",
"rest api",
"graphql",
"graphql alternative",
"json-api-normalizer"
],
"repository": {
"type": "git",
"url": "https://github.com/olosegres/jsona"
},
"bugs": {
"url": "https://github.com/olosegres/jsona/issues"
},
"homepage": "https://github.com/olosegres/jsona#readme",
"author": "Sergei Solo <olosegres@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"dependencies": {
"tslib": "^2.4.1"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.5",
"chai": "^4.3.4",
"mocha": "^10.1.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.9.3"
},
"scripts": {
"clean": "rm -rf ./lib/*",
"build": "./node_modules/.bin/tsc",
"prebuild": "npm run clean",
"preversion": "npm run build && npm test",
"test-build": "tsc --p tsconfig.test.json",
"test": "npm run test-build && env NODE_ENV=test ts-mocha ./**/*.test.ts"
}
}