-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "archieml-stringify",
"description": "Convert JavaScript objects into an ArchieML string",
"version": "1.3.0",
"author": "Eric Rabinowitz",
"homepage": "https://github.com/ericrav/archieml-stringify",
"license": "MIT",
"keywords": [
"archie",
"archieml",
"aml",
"text",
"string",
"stringify",
"serialize"
],
"packageManager": "[email protected]",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"archieml": "^0.5.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"rollup": "^2.66.1",
"rollup-plugin-dts": "^4.1.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"files": [
"dist"
]
}