-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "nor-extend",
"version": "1.3.2",
"description": "Extends promises with custom methods from another object",
"main": "dist/index.js",
"scripts": {
"compile-watch": "babel --watch -d dist/ src/",
"compile": "babel -d dist/ src/",
"prepare": "npm run -s compile",
"pretest": "npm run -s compile",
"test": "mocha --require @babel/register test/unit/**/*.spec.js",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"jshint": "jshint src/"
},
"directories": {
"test": "tests",
"src": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/sendanor/nor-extend.git"
},
"keywords": [
"mysql",
"database",
"sql"
],
"author": "Jaakko-Heikki Heusala <[email protected]>",
"license": "MIT",
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/sendanor/nor-extend/issues"
},
"dependencies": {
"@norjs/is": "^1.3.0",
"@norjs/debug": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"jshint": "^2.9.7",
"lint": "^1.1.2",
"mocha": "^5.2.0",
"q": "^1.5.1"
},
"engines": {
"node": ">=4"
}
}