-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 KB
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
{
"name": "storablejs",
"version": "0.0.20",
"description": "A javascript datastore built using RxJS Observables",
"main": "index.js",
"scripts": {
"compile": "babel -i __tests__ -d ./ src/",
"prepublish": "npm run compile && npm test",
"test": "jest"
},
"jest": {
"rootDir": "./src",
"scriptPreprocessor": "../node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nramadas/Storable.git"
},
"keywords": [
"datastore",
"observable",
"rx",
"rxjs"
],
"author": "Niranjan Ramadas <nrbramadas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nramadas/Storable/issues"
},
"homepage": "https://github.com/nramadas/Storable#readme",
"devDependencies": {
"babel": "^5.8.23",
"babel-jest": "^5.3.0",
"jest-cli": "^0.5.0"
},
"peerDependencies": {
"rx": ""
},
"dependencies": {
"lodash": "^3.10.1"
}
}