-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "pure-testing-lecture",
"version": "1.0.0",
"description": "show how pure functions make testing easier",
"main": "lib/index.js",
"repository": "https://github.com/LearnersGuild/pure-testing-lecture",
"author": "Jeffrey Wescott <jeffrey@learnersguild.org>",
"license": "ISC",
"engines": {
"node": "~8.9"
},
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib",
"dev": "./node_modules/.bin/watch 'yarn run test' src",
"go": "yarn run build && node -r babel-polyfill ./lib",
"test:lint": "./node_modules/.bin/eslint src",
"test:run": "./node_modules/.bin/tape -r babel-polyfill ./lib/**/__tests__/*-test.js | ./node_modules/.bin/tap-spec",
"test": "yarn run build && yarn run test:lint && yarn run test:run"
},
"babel": {
"presets": [
"env",
"stage-2"
]
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"blue-tape": "^1.0.0",
"eslint": "^4.19.1",
"nock": "^9.2.3",
"tap-spec": "^4.1.1",
"watch": "^1.0.2"
},
"dependencies": {
"json2csv": "^4.0.3",
"minimist": "^1.2.0",
"node-fetch": "^2.1.2"
}
}