UNPKG

cst

Version:

JavaScript CST Implementation

63 lines (62 loc) 1.74 kB
{ "name": "cst", "version": "0.4.10", "description": "JavaScript CST Implementation", "author": "Marat Dulin", "repository": { "type": "git", "url": "https://github.com/cst/cst" }, "bugs": { "url": "https://github.com/cst/cst/issues" }, "maintainers": [ "Henry Zhu <hi@henryzoo.com>", "Oleg Gaidarenko <markelog@gmail.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": "eslint src test", "flow": "flow check", "build": "babel src -d lib --source-maps", "precommit": "npm test", "release": "npm run build && npm publish", "postpublish": "rm -Rf lib" }, "devDependencies": { "babel-cli": "^6.6.5", "babel-helper-fixtures": "^6.18.2", "babel-eslint": "~7.0.0", "babel-plugin-transform-class-properties": "^6.6.0", "babel-plugin-transform-flow-strip-types": "^6.7.0", "babel-plugin-transform-object-rest-spread": "^6.6.5", "babel-plugin-transform-runtime": "^6.9.0", "babel-preset-es2015": "^6.6.0", "babel-register": "^6.9.0", "benchmark": "^2.1.0", "chai": "^3.5.0", "chalk": "^1.1.1", "eslint": "~3.8.1", "eslint-config-google": "~0.7.0", "eslint-plugin-flowtype": "~2.25.0", "gaze-cli": "^0.2.0", "husky": "^0.11.4", "lodash.foreach": "^4.5.0", "lodash.get": "^4.4.2", "mocha": "^3.1.2" }, "dependencies": { "babel-runtime": "^6.9.2", "babylon": "^6.8.1", "source-map-support": "^0.4.0" }, "files": [ "lib" ] }