-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "rollup-plugin-opencc",
"version": "0.1.0",
"description": "OpenCC plugin for Rollup bundler",
"main": "lib/index.js",
"module": "lib/index.mjs",
"author": "Nelson Liu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nelsliu9121/rollup-plugin-opencc"
},
"scripts": {
"test": "mocha --require ts-node/register test/*.ts",
"build": "rollup -c"
},
"dependencies": {
"node-opencc": "^2.0.1"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/mocha": "^5.2.7",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"mocha": "^6.1.4",
"rollup": "^1.15.6",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"rollup-pluginutils": "^2.8.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}