This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/js-framework/package.json

30 lines
842 B
JSON
Raw Normal View History

2019-07-15 17:56:24 +08:00
{
2019-07-19 10:27:09 +08:00
"name": "doric-js-framework",
2019-07-15 17:56:24 +08:00
"version": "0.1.0",
2019-07-19 10:27:09 +08:00
"description": "The JS Framework of Doric",
2019-07-15 17:56:24 +08:00
"main": "index.js",
"scripts": {
2019-07-16 14:02:55 +08:00
"test": "echo \"Error: no test specified\" && exit 1",
2019-07-18 11:34:43 +08:00
"dev": "tsc -p .&& rollup -c && node ./bundle/bundle.js",
2019-07-18 18:29:47 +08:00
"build": "tsc -p . && rollup -c ",
"clean": "rm -rf build && rm -rf demo && rm -rf bundle"
2019-07-15 17:56:24 +08:00
},
"repository": {
2019-07-17 12:41:02 +08:00
"type": "https",
2019-07-19 10:27:09 +08:00
"url": "https://github.com/penfeizhou/doric.git"
2019-07-15 17:56:24 +08:00
},
"author": "pengfeizhou",
"license": "Apache-2.0",
"bugs": {
2019-07-19 10:27:09 +08:00
"url": "https://github.com/penfeizhou/doric/issues"
2019-07-15 17:56:24 +08:00
},
2019-07-19 10:27:09 +08:00
"homepage": "https://github.com/penfeizhou/doric#readme",
2019-07-16 21:05:48 +08:00
"dependencies": {
2019-07-17 15:03:31 +08:00
"reflect-metadata": "^0.1.13",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"tslib": "^1.10.0"
2019-07-16 21:05:48 +08:00
}
2019-07-21 05:50:54 +08:00
}