-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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": "nason",
"version": "1.3.1",
"description": "Ultra tiny serializer with customizable encoders.",
"main": "./lib/nason.min.js",
"module": "./lib/nason.min.mjs",
"types": "./lib/src/index.d.ts",
"author": "Simon Reinisch <trash@reinisch.io>",
"license": "MIT",
"keywords": [
"encoding",
"binary",
"json",
"bson",
"serialization"
],
"homepage": "https://github.com/Simonwep/nason#readme",
"repository": "https://github.com/Simonwep/nason.git",
"bugs": "https://github.com/Simonwep/nason/issues",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"build:watch": "cross-env NODE_ENV=development rollup -c rollup.config.js --watch",
"lint": "eslint './{src,test}/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:ci": "npm run lint:fix && npm run test && npm run build"
},
"files": [
"lib/src",
"lib/nason*"
],
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/node": "^16.11.57",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@vitest/coverage-c8": "^0.23.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.2",
"vitest": "^0.23.1"
}
}