-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 872 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 872 Bytes
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": "toml",
"version": "4.1.1",
"description": "TOML parser for Node.js (TOML v1.1.0 compliant)",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"lib/"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "peggy -o lib/parser.js src/toml.pegjs",
"test": "node --test test/test_toml.js",
"test:spec": "node test/spec-test.js",
"test:spec:failures": "node test/spec-test.js --failures",
"test:all": "node --test test/test_toml.js && node test/spec-test.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/BinaryMuse/toml-node.git"
},
"keywords": [
"toml",
"parser"
],
"author": "Michelle Tilley <michelle@michelletilley.net>",
"license": "MIT",
"devDependencies": {
"peggy": "^5.1.0"
}
}