aboutsummaryrefslogtreecommitdiff
path: root/node_modules/toml/package.json
blob: 53418e9332ae020085bb1f77bff3e27fe6d2fe80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "name": "toml",
  "version": "2.3.3",
  "description": "TOML parser for Node.js (parses TOML spec v0.4.0)",
  "main": "index.js",
  "types": "index.d.ts",
  "scripts": {
    "build": "pegjs --cache src/toml.pegjs lib/parser.js",
    "test": "jshint lib/compiler.js && nodeunit test/test_*.js",
    "prepublish": "npm run build"
  },
  "repository": "git://github.com/BinaryMuse/toml-node.git",
  "keywords": [
    "toml",
    "parser"
  ],
  "author": "Michelle Tilley <michelle@michelletilley.net>",
  "license": "MIT",
  "devDependencies": {
    "jshint": "*",
    "nodeunit": "~0.9.0",
    "pegjs": "~0.8.0"
  }
}