forked from single-spa/single-spa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "single-spa",
"version": "3.8.1",
"description": "Multiple applications, one page",
"main": "lib/single-spa.js",
"scripts": {
"jspm-install": "jspm install",
"build": "yarn clean && ./bin/build-code -p",
"build:dev": "./bin/build-code",
"watch": "./bin/build-code -w",
"build:test": "./bin/build-tests",
"prepublish": "yarn build",
"clean": "rm -rf lib",
"test": "yarn build:test && yarn build:dev && karma start --single-run",
"test:debug": "yarn build:test && yarn build:dev && karma start",
"test:travis": "yarn build:test && yarn build:dev && 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-cli": "^6.14.0",
"babel-eslint": "8.1.2",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.14.0",
"clean-webpack-plugin": "^0.1.14",
"concurrently": "^3.4.0",
"custom-event": "^1.0.1",
"eslint": "4.14.0",
"eslint-config-canopy": "2.0.0",
"jasmine": "^2.4.1",
"jspm": "0.17.0-beta.32",
"karma": "^1.1.2",
"karma-chrome-launcher": "^2.1.1",
"karma-jasmine": "^1.0.2",
"karma-sauce-launcher": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^3.0.0"
},
"ignore": [
"examples"
],
"jspmPackage": true,
"format": "amd",
"registry": "npm",
"jspm": {
"name": "single-spa",
"main": "lib/single-spa.js",
"dependencies": {},
"devDependencies": {
"babel-preset-es0015": "babel-preset-es2015@^6.13.2",
"babel-preset-stage-1": "^6.13.0",
"babel-preset-stage-3": "^6.11.0",
"http": "jspm-nodelibs-http@^0.2.0",
"module": "jspm-nodelibs-module@^0.2.0",
"plugin-babel": "systemjs-plugin-babel@^0.0.13",
"url": "jspm-nodelibs-url@^0.2.0"
},
"peerDependencies": {
"assert": "jspm-nodelibs-assert@^0.2.0",
"buffer": "jspm-nodelibs-buffer@^0.2.0",
"child_process": "jspm-nodelibs-child_process@^0.2.0",
"constants": "jspm-nodelibs-constants@^0.2.0",
"crypto": "jspm-nodelibs-crypto@^0.2.0",
"events": "jspm-nodelibs-events@^0.2.0",
"fs": "jspm-nodelibs-fs@^0.2.0",
"os": "jspm-nodelibs-os@^0.2.0",
"path": "jspm-nodelibs-path@^0.2.0",
"process": "jspm-nodelibs-process@^0.2.0",
"stream": "jspm-nodelibs-stream@^0.2.0",
"string_decoder": "jspm-nodelibs-string_decoder@^0.2.0",
"util": "jspm-nodelibs-util@^0.2.0",
"vm": "jspm-nodelibs-vm@^0.2.0"
},
"overrides": {
"npm:[email protected]": {
"main": "browser.js",
"jspmNodeConversion": false,
"format": "cjs",
"map": {
"./browser.js": {
"node": "./node.js"
},
"fs": "@node/fs",
"net": "@node/net",
"tty": "@node/tty",
"util": "@node/util"
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
},
"npm:[email protected]": {
"map": {
"buffer": "@empty",
"process": "@empty"
}
},
"npm:[email protected]": {
"jspmNodeConversion": false,
"format": "cjs"
}
}
}
}