-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "js-tdd-course",
"version": "1.0.0",
"description": "Nossa biblioteca do curso JS com TDD na pratica",
"main": "index.js",
"scripts": {
"build": "webpack --colors --progress",
"watch": "npm rum build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianosilvareis/js-tdd-course.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Adriano Reis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianosilvareis/js-tdd-course/issues"
},
"homepage": "https://github.com/adrianosilvareis/js-tdd-course#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015-native-modules": "^6.9.4",
"webpack": "^4.5.0"
}
}