mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00

Motivation: - Most test frameworks expect modules - I'm told they're the future Changes: - Every typescript source file is now an es6 module - Build system is now webpack (tho rollup makes nicer outputs) - Outputs of buildsystem are one js file per entry point (background, content, commandline_frame) - These bundled js files are generated by traversing the dependency graph of each entry point
22 lines
612 B
JSON
22 lines
612 B
JSON
{
|
|
"name": "tridactyl",
|
|
"version": "0.1.0",
|
|
"description": "Vimperator/Pentadactyl successor",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"web-ext-types": "github:michael-zapata/web-ext-types",
|
|
"typescript": "^2.5.3",
|
|
"webpack": "^3.6.0",
|
|
"awesome-typescript-loader": "^3.2.3",
|
|
"copy-webpack-plugin": "^4.1.0",
|
|
"source-map-loader": "^0.2.2",
|
|
"uglify-es": "^3.1.2",
|
|
"uglifyjs-webpack-plugin": "^1.0.0-beta.2"
|
|
},
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"clean": "rm -rf build",
|
|
"test": "npm run build; echo; echo No other tests yet"
|
|
},
|
|
"author": "Colin Caine"
|
|
}
|