-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·35 lines (35 loc) · 1.01 KB
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
{
"name": "core-ft-async-awareness",
"version": "1.0.0",
"description": "Async callbacks is the very basics of understanding how to use asyncronous code in JavaScript",
"main": "main.js",
"scripts": {
"test-utils": "mocha ./spec/utils.spec.js",
"test-dev": "mocha ./spec/main.spec.js",
"test": "mocha ./spec/*.spec.js --bail",
"lint": "eslint ./",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northcoders/CORE-FT-async-awareness.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/northcoders/CORE-FT-async-awareness/issues"
},
"homepage": "https://github.com/northcoders/CORE-FT-async-awareness#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.15.0",
"mocha": "^5.0.4",
"sinon": "^3.2.1"
},
"dependencies": {
"async": "^2.6.0",
"fs": "0.0.1-security",
"node": "^9.8.0"
}
}