-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "json-api-codec",
"version": "1.1.1",
"description": "Barely acceptable JSON:API codec",
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"sideEffects": false,
"keywords": [
"jsonapi"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --build ./tsconfig.cjs.json",
"build:esm": "tsc --build ./tsconfig.esm.json",
"clean": "rm -rf ./dist/",
"prerelease": "npm run build && cp package.json *.md ./dist/",
"release": "npm publish ./dist/",
"test": "mocha --recursive",
"test:coverage": "nyc -a -n src/ npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/facile-it/json-api-ts.git"
},
"author": "Alberto Villa <[email protected]>",
"license": "MIT",
"dependencies": {
"fp-ts": "^2.12.0",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"lodash": "^4.17.0",
"monocle-ts": "^2.3.13"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.9",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/node": "^12.12.27",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}