[d565449] | 1 | {
|
---|
| 2 | "name": "json5",
|
---|
| 3 | "version": "2.2.3",
|
---|
| 4 | "description": "JSON for Humans",
|
---|
| 5 | "main": "lib/index.js",
|
---|
| 6 | "module": "dist/index.mjs",
|
---|
| 7 | "bin": "lib/cli.js",
|
---|
| 8 | "browser": "dist/index.js",
|
---|
| 9 | "types": "lib/index.d.ts",
|
---|
| 10 | "files": [
|
---|
| 11 | "lib/",
|
---|
| 12 | "dist/"
|
---|
| 13 | ],
|
---|
| 14 | "engines": {
|
---|
| 15 | "node": ">=6"
|
---|
| 16 | },
|
---|
| 17 | "scripts": {
|
---|
| 18 | "build": "rollup -c",
|
---|
| 19 | "build-package": "node build/package.js",
|
---|
| 20 | "build-unicode": "node build/unicode.js",
|
---|
| 21 | "coverage": "tap --coverage-report html test",
|
---|
| 22 | "lint": "eslint --fix .",
|
---|
| 23 | "lint-report": "eslint .",
|
---|
| 24 | "prepublishOnly": "npm run production",
|
---|
| 25 | "preversion": "npm run production",
|
---|
| 26 | "production": "run-s test build",
|
---|
| 27 | "tap": "tap -Rspec --100 test",
|
---|
| 28 | "test": "run-s lint-report tap",
|
---|
| 29 | "version": "npm run build-package && git add package.json5"
|
---|
| 30 | },
|
---|
| 31 | "repository": {
|
---|
| 32 | "type": "git",
|
---|
| 33 | "url": "git+https://github.com/json5/json5.git"
|
---|
| 34 | },
|
---|
| 35 | "keywords": [
|
---|
| 36 | "json",
|
---|
| 37 | "json5",
|
---|
| 38 | "es5",
|
---|
| 39 | "es2015",
|
---|
| 40 | "ecmascript"
|
---|
| 41 | ],
|
---|
| 42 | "author": "Aseem Kishore <aseem.kishore@gmail.com>",
|
---|
| 43 | "contributors": [
|
---|
| 44 | "Max Nanasy <max.nanasy@gmail.com>",
|
---|
| 45 | "Andrew Eisenberg <andrew@eisenberg.as>",
|
---|
| 46 | "Jordan Tucker <jordanbtucker@gmail.com>"
|
---|
| 47 | ],
|
---|
| 48 | "license": "MIT",
|
---|
| 49 | "bugs": {
|
---|
| 50 | "url": "https://github.com/json5/json5/issues"
|
---|
| 51 | },
|
---|
| 52 | "homepage": "http://json5.org/",
|
---|
| 53 | "devDependencies": {
|
---|
| 54 | "core-js": "^2.6.5",
|
---|
| 55 | "eslint": "^5.15.3",
|
---|
| 56 | "eslint-config-standard": "^12.0.0",
|
---|
| 57 | "eslint-plugin-import": "^2.16.0",
|
---|
| 58 | "eslint-plugin-node": "^8.0.1",
|
---|
| 59 | "eslint-plugin-promise": "^4.0.1",
|
---|
| 60 | "eslint-plugin-standard": "^4.0.0",
|
---|
| 61 | "npm-run-all": "^4.1.5",
|
---|
| 62 | "regenerate": "^1.4.0",
|
---|
| 63 | "rollup": "^0.64.1",
|
---|
| 64 | "rollup-plugin-buble": "^0.19.6",
|
---|
| 65 | "rollup-plugin-commonjs": "^9.2.1",
|
---|
| 66 | "rollup-plugin-node-resolve": "^3.4.0",
|
---|
| 67 | "rollup-plugin-terser": "^1.0.1",
|
---|
| 68 | "sinon": "^6.3.5",
|
---|
| 69 | "tap": "^12.6.0",
|
---|
| 70 | "unicode-10.0.0": "^0.7.5"
|
---|
| 71 | }
|
---|
| 72 | }
|
---|