-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.21 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
42
{
"name": "wolfram-notebook-embedder",
"version": "0.3.0",
"description": "Library to embed Wolfram Cloud notebooks on websites.",
"main": "dist/wolfram-notebook-embedder.js",
"keywords": [
"wolfram",
"cloud",
"notebook",
"embedding"
],
"license": "MIT",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/WolframResearch/wolfram-notebook-embedder.git"
},
"scripts": {
"prepublishOnly": "npm-run-all build",
"build": "npm-run-all transpile minify",
"transpile": "rollup -c config/rollup.config.js",
"copy-dist-to-examples": "cp -r ./dist ./examples",
"serve-examples": "serve examples",
"minify": "uglifyjs dist/wolfram-notebook-embedder.js --compress --mangle --output dist/wolfram-notebook-embedder.min.js",
"run-examples": "npm-run-all build copy-dist-to-examples serve-examples"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"npm-run-all": "^4.1.5",
"rollup": "^2.58.0",
"serve": "^12.0.1",
"uglify-js": "^3.14.2"
},
"dependencies": {}
}