-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "fullstack-book-of-the-week",
"description": "A set of tech books that might be enjoyed by the fullstack developer, ideally one per week",
"version": "1.0.2",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"scripts": {
"test:lint": "eslint src/**.js test/**.test.js",
"test:unit": "nyc ava --tap test/**.test.js | tee .test_results.txt | tap-spec",
"test": "npm run test:lint && npm run test:unit",
"build": "babel src/index.js > lib/index.js"
},
"repository": "[email protected]:FullStackBulletin/fullstack-book-of-the-week.git",
"author": "Luciano Mammino <[email protected]>",
"license": "MIT",
"dependencies": {
"moment": "^2.17.1"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"codecov": "^1.0.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"tap-spec": "^4.1.1",
"tap-xunit": "^1.7.0"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
}
}