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/doric-web/package.json

34 lines
879 B
JSON
Raw Normal View History

2019-12-18 16:11:02 +08:00
{
2019-12-31 18:31:47 +08:00
"name": "doric-web",
2020-04-11 13:05:51 +08:00
"version": "0.4.2",
2019-12-31 18:31:47 +08:00
"description": "Doric library for Web",
2020-01-06 13:13:06 +08:00
"main": "dist/index.js",
2019-12-18 16:11:02 +08:00
"scripts": {
2019-12-19 10:42:57 +08:00
"test": "echo \"Error: no test specified\" && exit 1",
2020-01-06 14:18:02 +08:00
"build": "tsc -p .&& rollup -c",
"prepublish": "npm run build"
2019-12-18 16:11:02 +08:00
},
"repository": {
"type": "git",
2019-12-31 18:31:47 +08:00
"url": "git+https://github.com/doric-pub/doric.git"
2019-12-18 16:11:02 +08:00
},
"author": "pengfeizhou",
"license": "Apache-2.0",
"bugs": {
2019-12-31 18:31:47 +08:00
"url": "https://github.com/doric-pub/doric/issues"
2019-12-18 16:11:02 +08:00
},
2019-12-31 18:31:47 +08:00
"homepage": "https://github.com/doric-pub/doric#readme",
2019-12-18 16:11:02 +08:00
"dependencies": {
2020-07-03 17:23:48 +08:00
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"axios": "^0.19.2",
"doric": "file:../doric-js",
2020-07-03 17:23:48 +08:00
"rollup": "^2.18.2",
"typescript": "^3.9.6"
2020-01-10 14:56:30 +08:00
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
2019-12-18 16:11:02 +08:00
}
2020-01-10 16:19:53 +08:00
}