-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.37 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": "@emtecinc/single-spa-backbone",
"version": "1.0.5",
"description": "a single spa plugin for backbone.js apps",
"main": "lib/single-spa-backbone.js",
"scripts": {
"build": "rimraf lib && mkdir lib && babel src/single-spa-backbone.js --out-file lib/single-spa-backbone.js --source-maps && babel src/single-spa-backbone-loader.js --out-file lib/single-spa-backbone-loader.js --source-maps && babel src/single-spa-backbone-unloader.js --out-file lib/single-spa-backbone-unloader.js --source-maps",
"test": "jest --config jest.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"single",
"page",
"application",
"spa",
"multi",
"backbone",
"backbonejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/emtecinc/single-spa-backbone.git"
},
"author": "Emtec Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/emtecinc/single-spa-backbone/issues"
},
"homepage": "https://github.com/emtecinc/single-spa-backbone#readme",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
"@babel/plugin-transform-modules-umd": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"mkdirp": "^0.5.1",
"rimraf": "^2.7.1"
}
}