UNPKG

cst

Version:

JavaScript CST Implementation

51 lines (50 loc) 1.21 kB
{ "name": "cst", "version": "0.0.19", "description": "JavaScript CST Implementation", "author": "Marat Dulin", "repository": { "type": "git", "url": "https://github.com/cst/cst" }, "bugs": { "url": "https://github.com/cst/cst/issues" }, "contributors": [ { "name": "Henry Zhu", "email": "hi@henryzoo.com" } ], "license": "MIT", "main": "lib/index.js", "scripts": { "test": "npm run lint && npm run test:unit", "test:unit": "mocha", "test:live": "mocha --watch", "test:benchmark": "babel-node test/benchmarks/benchmarks.js", "watch": "gaze 'npm run build' 'src/**/*.js'", "lint": "npm run lint:jscs", "lint:jscs": "jscs src test", "flow": "flow check", "build": "babel src -d lib", "precommit": "npm test", "release": "npm run build && npm publish", "postpublish": "rm -Rf lib" }, "devDependencies": { "babel": "5.8.29", "benchmark": "^1.0.0", "chai": "^3.0.0", "chalk": "^1.0.0", "flow-bin": "^0.20.1", "gaze-cli": "^0.2.0", "husky": "^0.8.1", "jscs": "^2.0.0", "jscs-jsdoc": "^1.1.0", "mocha": "^2.2.5" }, "dependencies": { "babylon": "^5.8.29" } }