-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.37 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "manttest-client-login-store",
"version": "0.1.0",
"description": "Store for login client module",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"jam": {
"main": "./dist/main.browser.js"
},
"browser": {
"dist/main.js": "./dist/main.browser.js"
},
"scripts": {
"prebuild": "npm install",
"build": "webpack || echo not ok",
"test": "npm run test:watch",
"test:once": "jest",
"test:watch": "jest --watchAll",
"coverage": "npm run coverage:watch",
"coverage:once": "jest --coverage --no-cache",
"coverage:watch": "jest --coverage --watchAll --no-cache",
"prerelease": "npm run build && npm run coverage:once",
"release": "standard-version && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TestJG/manttest-client-login-store.git"
},
"keywords": [
"manttest",
"store",
"client"
],
"author": "Josep Bergay",
"license": "MIT",
"bugs": {
"url": "https://github.com/TestJG/manttest-client-login-store/issues"
},
"homepage": "https://github.com/TestJG/manttest-client-login-store#readme",
"devDependencies": {
"@types/deep-equal": "0.0.30",
"@types/jest": "^0.9.31",
"@types/node": "^6.0.38",
"@types/object-assign": "^4.0.29",
"awesome-typescript-loader": "^2.2.1",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"browserify": "^13.1.0",
"deep-equal": "^1.0.1",
"delete-empty": "^0.1.3",
"dts-bundle": "^0.5.0",
"jest": "^15.1.1",
"object-assign": "^4.1.0",
"rxjs": "^5.0.0-rc.1",
"rxstore": "^1.*",
"rxstore-jest": "^0.*",
"standard-version": "^2.4.0",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.0.0",
"typescript-babel-jest": "^0.1.2",
"webpack": "2.1.0-beta.22",
"webpack-node-externals": "^1.4.3"
},
"dependencies": {},
"peerDependencies": {
"@types/deep-equal": "0.0.30",
"@types/object-assign": "^4.0.29",
"deep-equal": "^1.0.1",
"object-assign": "^4.1.0",
"rxjs": "^5.0.0-rc.1",
"rxstore": "^1.3.5"
},
"jest": {
"verbose": true,
"scriptPreprocessor": "node_modules/typescript-babel-jest",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}