-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "lumie",
"version": "0.1.2",
"description": "Make a dazzling node API",
"main": "src/index.js",
"scripts": {
"start": "npm start --prefix example",
"test:src": "nyc ava -v",
"test:example": "npm test --prefix example",
"test": "npm run test:src && npm run test:example",
"lint": "eslint src/",
"ava": "ava"
},
"repository": {
"type": "git",
"url": "https://github.com/Alex-Levacher/Lumie"
},
"keywords": [
"javascript",
"nodejs",
"express",
"MVC",
"API",
"REST",
"controller",
"generator"
],
"author": {
"name": "Alexandre Levacher"
},
"license": "MIT",
"dependencies": {
"micromatch": "^3.1.10"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"sinon": "^6.0.0"
},
"ava": {
"files": [
"test/**/*.spec.js"
],
"source": [
"src/**/*.js"
],
"verbose": true,
"concurrency": 1
},
"pre-commit": [
"lint",
"test:src",
"test:example"
]
}