https://github.com/wenyan-lang/wenyan
Raw File
Tip revision: d81d7137ed93027f6530b78564122d4b07a5d657 authored by Anthony Fu on 06 January 2020, 03:13:39 UTC
release v0.2.1
Tip revision: d81d713
package.json
{
  "name": "wenyanlang",
  "description": "文言 A programming language for the ancient Chinese",
  "version": "0.2.1",
  "author": "LingDong <lingdong0618@hotmail.com>",
  "private": true,
  "repository": {
    "type": "git",
    "url": "https://github.com/LingDong-/wenyan-lang.git"
  },
  "license": "MIT",
  "keywords": [
    "wenyan",
    "wenyan-lang",
    "compiler",
    "ancient-chinese",
    "classical-chinese"
  ],
  "homepage": "https://github.com/LingDong-/wenyan-lang",
  "scripts": {
    "build": "npm run clear && webpack --mode production",
    "build:dev": "npm run clear && webpack --mode development",
    "dev": "npm run clear && webpack --mode development --watch",
    "clear": "rimraf ./dist",
    "publish": "bump --commit && node ./tools/publish.js",
    "publish:ci": "node ./tools/publish.js",
    "release": "bump --commit --tag && git push --follow-tags",
    "docs:update": "node ./tools/stdlib_doc.js",
    "make_examples_readme": "node ./tools/make_examples_readme.js",
    "make_ide": "node ./tools/make_ide.js",
    "make_site": "node ./tools/make_site.js",
    "ide:dev": "nodemon --ignore build,dist ./tools/make_ide.js",
    "site:dev": "nodemon --ignore build,dist ./tools/make_site.js",
    "test": "mocha --require mocha-snapshots",
    "test:update": "mocha --require mocha-snapshots --update",
    "lint:fix": "npm run lint -- --fix",
    "lint": "eslint {src,tools,test}/**/*.js",
    "prettify": "prettier {src,tools,test}/**/*.js --write"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "{src,tools,test}/**/*.js": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ]
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "commander": "^4.0.1",
    "enzyme": "^3.10.0",
    "eslint": "^6.7.2",
    "eslint-config-prettier": "^6.7.0",
    "eslint-plugin-babel": "^5.3.0",
    "eslint-plugin-prettier": "^3.1.2",
    "fs-extra": "^8.1.0",
    "husky": "^3.1.0",
    "lint-staged": "^9.5.0",
    "mocha": "^6.2.2",
    "mocha-snapshots": "^4.2.0",
    "nodemon": "^2.0.2",
    "pkg": "^4.4.2",
    "prettier": "^1.19.1",
    "raw-loader": "^4.0.0",
    "rimraf": "^3.0.0",
    "version-bump-prompt": "^5.0.6",
    "webpack": "^4.41.4",
    "webpack-cli": "^3.3.10",
    "webpack-shell-plugin": "^0.5.0"
  }
}
back to top