-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.91 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
{
"name": "frontend-interview-project",
"version": "1.0.0",
"description": "You have elected to do a take-home project as a part of your interview for a front-end developer position at Canopy. Your goal is to implement a small project in advance of the interview. Part of your interview we will discuss the implementation details of your solution.",
"main": "index.js",
"scripts": {
"start": "babel src/index.js --out-file index.js && node index.js",
"dev": "babel src/index.js --out-file index.js --source-maps --watch",
"test": "babel src/index.js --out-file index.js && ava __tests__/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CanopyTax/frontend-interview-project.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CanopyTax/frontend-interview-project/issues"
},
"homepage": "https://github.com/CanopyTax/frontend-interview-project#readme",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"rewire": "^4.0.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8.11.3"
}
}
]
],
"plugins": [
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true,
"moduleName": "babel-runtime"
}
]
]
},
"dependencies": {
"axios": "^0.18.0",
"rxjs": "^6.2.2",
"rxjs-compat": "^6.2.2"
},
"ava": {
"files": [
"__tests__/*.js"
],
"sources": [
"**/*.{js,jsx}",
"!index.js"
],
"cache": true,
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": true,
"compileEnhancements": false,
"require": [
"babel-register"
]
}
}