-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "@almin/legacy-store-group",
"version": "1.0.0",
"description": "Almin old StoreGroup and QueuedStoreGroup implementation.",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && mocha test/",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build"
},
"keywords": [
"almin"
],
"repository": {
"type": "git",
"url": "https://github.com/almin/legacy-store-group.git"
},
"bugs": {
"url": "https://github.com/almin/legacy-store-group/issues"
},
"homepage": "https://github.com/almin/legacy-store-group",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.13",
"@types/object-assign": "^4.0.30",
"almin": "0.12.0-2",
"cross-env": "^4.0.0",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"typescript": "^2.2.2"
},
"dependencies": {
"lru-map-like": "2.0.0",
"object-assign": "^4.1.1"
},
"peerDependencies": {
"almin": "0.12.0-2 || >=0.12.0"
}
}