-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
41 lines (41 loc) · 1.12 KB
/
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
35
36
37
38
39
40
41
{
"name": "CETEIcean",
"version": "1.9.0",
"description": "JavaScript library to load a TEI XML document and register it as HTML5 custom elements.",
"main": "src/CETEI.js",
"type": "module",
"keywords": [
"TEI",
"XML",
"HTML5 custom elements",
"ODD"
],
"author": "Raff Viglianti and Hugh Cayless",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/TEIC/CETEIcean.git"
},
"exports": {
".": "./src/CETEI.js",
"./utilities.js": "./src/utilities.js"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"babel-preset-env": "^1.7.0",
"http-server": "^14.1.1",
"jsdom": "^21.1.0",
"onchange": "^6.1.1",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.14.2"
},
"scripts": {
"build": "npm test && rollup -c rollup.config.js",
"build:tutorial": "npm run build && cp dist/CETEI.js tutorial/js/CETEI.js",
"dev": "npm run build && http-server -p 8888 & onchange src -- npm run build",
"test": "node test/nodeTest.js"
}
}