-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 763 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 763 Bytes
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
{
"name": "observalbe-ts-example",
"version": "1.0.0",
"description": "Example of how to use typescript in Observable notebook",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "http-server dist -c-1 -p 8081 --cors='*'"
},
"author": "Maxim Sokolov",
"license": "MIT",
"devDependencies": {
"http-server": "^0.12.0",
"rollup": "^1.27.13",
"rollup-plugin-typescript2": "^0.25.3",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
},
"dependencies": {}
}