forked from single-spa/single-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "single-spa",
"version": "4.0.0",
"description": "Multiple applications, one page",
"main": "lib/single-spa.js",
"scripts": {
"build": "webpack -p",
"build:dev": "webpack --config webpack.config.dev.js",
"build:analyze": "webpack --config webpack.config.analyze.js",
"watch": "webpack -w --config webpack.config.dev.js",
"prepublish": "in-publish && yarn build || not-in-publish",
"clean": "rm -rf lib",
"test": "karma start --single-run",
"test:debug": "karma start",
"test:travis": "karma start karma-saucelabs.conf.js --single-run",
"lint": "eslint src"
},
"repository": "https://github.com/CanopyTax/single-spa",
"keywords": [
"single",
"page",
"application",
"spa",
"multiple",
"lifecycle"
],
"author": "Joel Denning",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/preset-stage-3": "^7.0.0-beta.44",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0-beta.2",
"clean-webpack-plugin": "^0.1.14",
"custom-event": "^1.0.1",
"eslint": "4.14.0",
"eslint-config-canopy": "2.0.0",
"in-publish": "^2.0.0",
"jasmine": "^3.0.0",
"jspm": "0.17.0-beta.32",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"promise-polyfill": "^7.1.0",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14"
},
"ignore": [
"examples",
"docs"
]
}