forked from snychka/javascript-promises-async-await
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "refactor-promises-to-async-await",
"version": "1.0.0",
"description": "Refactor Promises to Async Await",
"main": "index.js",
"scripts": {
"start": "parcel index.html",
"test": "npm-run-all -s test:code",
"test:code": "mocha tests/**",
"test-watch": "npm-run-all -p -r test-watch:code",
"test-watch:code": "mocha tests/** --bail --watch --watch-extensions html",
"test:module2": "mocha tests/module2.spec.js",
"test:module3": "mocha tests/module3.spec.js",
"test:module4": "mocha tests/module4.spec.js",
"test:module5": "mocha tests/module5.spec.js",
"test:module6": "mocha tests/module6.spec.js",
"test:module7": "mocha tests/module7.spec.js",
"test:module8": "mocha tests/module8.spec.js",
"test:module9": "mocha tests/module9.spec.js"
},
"author": "Marques Woodson",
"license": "MIT",
"devDependencies": {
"acorn": "^7.1.1",
"chai": "^4.2.0",
"jquery": "^3.3.1",
"jsdom": "^11.12.0",
"minimist": ">=1.2.2",
"mocha": "^7.0.1",
"npm-run-all": "^4.0.2",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1"
},
"browserslist": [
"last 2 Chrome versions"
],
"staticFiles": {
"staticPath": [
{
"staticPath": "src/data",
"staticOutDir": "data"
}
]
},
"dependencies": {
"lodash": "^4.17.15"
}
}