-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "almin-reduce-store",
"version": "1.0.3",
"description": "Almin's reduce store library.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "mocha test/",
"prebuild": "rimraf lib",
"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/almin-reduce-store.git"
},
"bugs": {
"url": "https://github.com/almin/almin-reduce-store/issues"
},
"homepage": "https://github.com/almin/almin-reduce-store",
"peerDependencies": {
"almin": "^0.x.x || ^1.x.x"
},
"devDependencies": {
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"almin": "^0.11.0",
"cross-env": "^4.0.0",
"espower-typescript": "^8.0.0",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"rimraf": "^2.6.1",
"typescript": "^2.2.2"
}
}