-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.36 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
51
52
53
54
55
56
{
"name": "rx-simple-store",
"version": "0.3.0",
"description": "A simple rx store solution written in TypeScript",
"main": "lib/index.js",
"module": "lib/es2015/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:svi3c/rx-simple-store.git",
"author": "Sven Reglitzki <[email protected]>",
"license": "MIT",
"keywords": [
"rxjs",
"rx",
"observable",
"flux",
"store",
"reactive",
"typescript",
"state",
"statemanagement"
],
"scripts": {
"prepublish": "npm run build",
"build": "rimraf lib && tsc && tsc --outDir ./lib/es2015 --module es6",
"lint": "tslint 'src/**/*.ts'",
"format": "prettier --write \"src/**/*.ts\"",
"test": "[ $CI = \"true\" ] && jest || jest --watch"
},
"jest": {
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src\\/.*\\.spec\\.ts$",
"moduleFileExtensions": ["ts", "js"]
},
"lint-staged": {
"*.ts": ["prettier --write", "git add"]
},
"prettier": {
"trailingComma": "all"
},
"devDependencies": {
"@types/jest": "^20.0.8",
"husky": "^0.14.3",
"jest": "^21.1.0",
"lint-staged": "^4.2.1",
"prettier": "^1.7.0",
"rimraf": "^2.6.1",
"ts-jest": "^21.0.1",
"tslint": "^5.1.0",
"typescript": "^2.3.2"
},
"dependencies": {
"rxjs": "5.x"
}
}