-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "test-systemjs",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"scripts": {
"babel": "babel src/main.ts -o src/main_babel.js"
},
"babel": {
"presets": [
"env"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.3.3",
"jspm": "^0.17.0-beta.41"
},
"jspm": {
"name": "test-systemjs",
"main": "src/main.js",
"dependencies": {
"email-validator": "npm:email-validator@^1.0.7"
},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.21"
},
"peerDependencies": {
"assert": "npm:jspm-nodelibs-assert@^0.2.0",
"buffer": "npm:jspm-nodelibs-buffer@^0.2.0",
"constants": "npm:jspm-nodelibs-constants@^0.2.0",
"crypto": "npm:jspm-nodelibs-crypto@^0.2.0",
"events": "npm:jspm-nodelibs-events@^0.2.0",
"fs": "npm:jspm-nodelibs-fs@^0.2.0",
"os": "npm:jspm-nodelibs-os@^0.2.0",
"path": "npm:jspm-nodelibs-path@^0.2.0",
"process": "npm:jspm-nodelibs-process@^0.2.0",
"stream": "npm:jspm-nodelibs-stream@^0.2.0",
"string_decoder": "npm:jspm-nodelibs-string_decoder@^0.2.0",
"url": "npm:jspm-nodelibs-url@^0.2.0",
"util": "npm:jspm-nodelibs-util@^0.2.0",
"vm": "npm:jspm-nodelibs-vm@^0.2.0"
},
"overrides": {
"npm:[email protected]": {
"ignore": [
"test.js"
]
}
}
},
"dependencies": {
"@types/email-validator": "^1.0.30",
"email-validator": "^1.0.7"
}
}