-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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": "realizehit-subscription",
"version": "0.1.9",
"description": "realizehit subscription class",
"main": "src/subscription.js",
"scripts": {
"test-jshint": "jshint .",
"test-mocha": "mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 10000 --reporter spec $(find test/* -name '*.test.js')",
"test": "for kind in jshint mocha; do npm run test-$kind; [ $? -ne 0 ] && exit 1; done; exit 0",
"preversion": "npm test",
"postversion": "git push origin master && git push origin --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/realizehit/subscription.git"
},
"keywords": [
"realizehit",
"subscription",
"lib"
],
"author": "José Moreira <[email protected]>",
"license": "GPL v3",
"bugs": {
"url": "https://github.com/realizehit/subscription/issues"
},
"homepage": "https://github.com/realizehit/subscription",
"dependencies": {
"bp-array-sort": "^0.1.0",
"debug": "^2.2.0",
"object-assign": "^4.0.1",
"realizehit-pattern-to-id": "^1.0.0"
},
"devDependencies": {
"bluebird": "^3.1.1",
"chai": "^2.3.0",
"ioredis": "^1.14.0",
"jshint": "^2.7.0",
"mocha": "^2.2.5"
}
}