-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
35
36
37
38
39
40
41
42
{
"name": "jquery.rubyann",
"version": "1.1.0",
"description": "rubyann is a jQuery plugin which uses a simple custom-syntax to create ruby annotations (eg furigana) in HTML",
"main": "dist/jquery.rubyann.js",
"types": "ts/jquery.rubyann.d.ts",
"scripts": {
"build": "coffee --compile --print src/jquery.rubyann.coffee | terser --compress --mangle --output dist/jquery.rubyann.js",
"release": "npm run build",
"pretest": "coffee --compile --output js tests/rubyann_tests.coffee",
"test": "node tests/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PandaWood/jquery.rubyann.git"
},
"keywords": [
"ruby",
"annotations",
"furigana",
"kanji"
],
"author": {
"name": "Peter van der Woude",
"email": "pandawoude@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/PandaWood/jquery.rubyann/issues"
},
"homepage": "https://github.com/PandaWood/jquery.rubyann#readme",
"dependencies": {
"jquery": "<=3.5.1"
},
"devDependencies": {
"@types/jquery": "^2.0.49",
"coffeescript": "^2.7.0",
"jsdom": "^29.1.1",
"qunit": "^2.20.0",
"terser": "^5.31.0"
}
}