glisp
Version:
A simple lisp interpreter in JS.
92 lines (91 loc) • 2.14 kB
JSON
{
"name": "glisp",
"version": "0.3.0",
"description": "A simple lisp interpreter in JS.",
"main": "lib/index.js",
"author": "Ramanpreet Nara",
"license": "ISC",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "rollup -c",
"build:watch": "npm run build -- --watch",
"serve:dev": "http-server -p 8080 .",
"prepublish": "npm run build",
"commit": "git cz",
"repl": "node repl",
"prerelease": "npm test",
"release": "standard-version",
"postrelease": "git push --follow-tags && npm publish",
"test": "cross-env NODE_ENV=test nyc ava",
"test:watch": "ava -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsnara/glisp.git"
},
"keywords": [
"G",
"LISP",
"Interpreter"
],
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"nyc": {
"all": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false,
"check-coverage": true,
"include": [
"src/**/*.js"
]
},
"bugs": {
"url": "https://github.com/rsnara/glisp/issues"
},
"homepage": "https://github.com/rsnara/glisp#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"chalk": "^1.1.3",
"commitizen": "^2.8.2",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^3.2.2",
"eslint-config-rsnara": "^1.1.0",
"http-server": "^0.9.0",
"nyc": "^7.1.0",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-watch": "^2.5.0",
"standard-version": "^2.4.0",
"testdouble": "^1.6.0"
},
"dependencies": {
"immutable": "^3.8.1",
"iterall": "^1.0.2",
"mathjs": "^3.3.0",
"ramda": "^0.21.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}