-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "esnext-training",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"bases": "jasmine exercises/bases/test.spec.js",
"promises": "jasmine exercises/promises/test.spec.js",
"classes": "jasmine exercises/classes/test.spec.js",
"proxies": "jasmine exercises/proxies/test.spec.js",
"generators": "jasmine exercises/generators/test.spec.js",
"modules": "rollup exercises/modules/module-A.js -o exercises/modules/bundle.js",
"functional": "jasmine exercises/functional/test.spec.js",
"reactive": "jasmine exercises/reactive/test.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/florianorpeliere/ESNext-training.git"
},
"keywords": [
"es6",
"es2015",
"ItsJustJavaScript",
"js",
"training"
],
"author": "Florian Orpeliere",
"license": "MIT",
"bugs": {
"url": "https://github.com/florianorpeliere/ESNext-training/issues"
},
"homepage": "https://github.com/florianorpeliere/ESNext-training#readme",
"devDependencies": {
"jasmine": "^2.5.3",
"rxjs": "^6.4.0"
},
"dependencies": {
"rollup": "^0.41.4"
}
}