-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (53 loc) · 1.43 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
{
"name": "nord",
"version": "0.1.0",
"description": "Next generation backend framework.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"build:watch": "babel src --out-dir lib --watch",
"buildtest": "babel tests --out-dir .tests",
"lint": "eslint index.js src tests",
"preinstall": "npm run build",
"pretest": "npm run lint && npm run build && npm run buildtest",
"pretest-no-lint": "npm run build && npm run buildtest",
"test": "mocha --reporter spec .tests/**/*-test.js",
"test-no-lint": "mocha --reporter spec .tests/**/*-test.js",
"posttest": "rm -rf lib .tests",
"posttest-no-lint": "npm run posttest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Globegitter/Nord.js.git"
},
"keywords": [
"API",
"REST",
"backend",
"graphql",
"server"
],
"author": "Markus Padourek",
"license": "MIT",
"bugs": {
"url": "https://github.com/Globegitter/Nord.js/issues"
},
"homepage": "https://github.com/Globegitter/Nord.js#readme",
"dependencies": {
"babel": "^5.6.23",
"babel-core": "^5.7.2",
"babel-runtime": "^5.7.0",
"fs-extra": "^0.22.1",
"glob": "^5.0.14"
},
"devDependencies": {
"babel-eslint": "^3.1.23",
"chai": "^3.0.0",
"eslint": "^0.24.1",
"mocha": "^2.2.5",
"shelljs": "^0.5.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"tmp-sync": "^1.0.1"
}
}