-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 883 Bytes
/
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
{
"name": "rw-toml",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "tsc --build --clean | tsc --build",
"clean": "tsc --build --clean",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerodegress/rw-toml.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/normalize-path": "^3.0.0",
"@types/path-browserify": "^1.0.0",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"normalize-path": "^3.0.0",
"path-browserify": "^1.0.1",
"toml": "^3.0.0"
},
"type": "commonjs"
}