forked from DanWahlin/Observable-Store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "@codewithdan/observable-store",
"version": "2.1.0",
"author": "Dan Wahlin",
"description": "Observable Store provides a simple way to store and retrieve state in Angular, React, Vue.js and other front-end applications.",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"url": "https://github.com/danwahlin/observable-store"
},
"keywords": [
"store",
"state management",
"Angular store",
"React store",
"Vue.js store",
"state store",
"JavaScript store",
"Front-end store"
],
"scripts": {
"tsc": "tsc",
"build": "rm -rf ./dist && tsc",
"build:watch": "tsc --watch",
"test": "jasmine-ts --project ./spec/tsconfig.json --config=./spec/jasmine.json",
"test:watch": "nodemon --ext ts --exec 'jasmine-ts --project ./spec/tsconfig.json --config=./spec/jasmine.json'"
},
"peerDependencies": {
"rxjs": "^6.4.0"
},
"devDependencies": {
"@types/jasmine": "^3.4.4",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"ts-node": ">=3.2.0 <8",
"typescript": "^3.6.4",
"rxjs": "^6.4.0"
},
"dependencies": {}
}