-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 926 Bytes
/
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
{
"name": "@xtream/yaem",
"author": "Luca Micieli <luca.micieli@xtreamers.io>",
"description": "Pure javascript porting of @ngrx/entity to use also with React",
"version": "1.0.1",
"typings": "build/index.d.ts",
"main": "build/index.js",
"repository": {
"url": "https://github.com/xtreamsrl/yaem"
},
"keywords": ["entities", "redux", "ngrx", "reselect", "memoization"],
"module": "build/index.js",
"scripts": {
"build": "npx babel src -d build --extensions \".ts\"",
"check-types": "tsc",
"emit-types": "tsc --declaration --outDir build --emitDeclarationOnly --declarationMap"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-typescript": "^7.3.3",
"typescript": "^3.5.2"
}
}