-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "colab-widgets",
"version": "0.0.1",
"description": "Jupyter interactive widgets for Colaboratory",
"license": "Apache-2.0",
"files": [
"lib/**/*.d.ts",
"dist/"
],
"scripts": {
"clean": "rimraf dist && rimraf lib",
"compile:src": "node_modules/.bin/tsc --project src",
"build:css": "postcss --use postcss-import --use postcss-cssnext -o dist/controls.css node_modules/@jupyter-widgets/controls/css/widgets.css",
"build:src:dev": "webpack --config webpack.dev.js",
"build:src:prod": "webpack --config webpack.prod.js",
"build:src": "npm run build:src:dev && npm run build:src:prod",
"build": "npm run build:src && npm run build:css",
"prepare": "npm run clean && npm run build"
},
"devDependencies": {
"@types/mathjax": "0.0.31",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.1",
"source-map-loader": "^0.2.3",
"ts-loader": "^5.3.2",
"tslint": "^5.8.0",
"typescript": "~2.9.2",
"webpack": "^4.28.0",
"webpack-cli": "^3.2.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@jupyter-widgets/controls": "^1.2.2"
}
}