-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "rxjs-dew-react",
"version": "1.1.0",
"description": "React bindings for rxjs-dw",
"main": "js/dist/index.js",
"typings": "js/dist/index",
"readme": "README.md",
"scripts": {
"clean_spec": "shx rm -rf js/spec",
"clean_cjs": "shx rm -rf js/dist",
"generate_package": "node .make-package.js",
"jasmine": "jasmine --config=src/jasmine.json",
"compile_cjs": "tsc",
"build_cjs": "npm-run-all clean_cjs compile_cjs",
"build_spec": "tsc --project ./tsconfig.spec.json --pretty",
"watch_spec": "tsc -w --project ./tsconfig.spec.json --pretty",
"build_test": "shx rm -rf ./js && npm-run-all build_cjs test",
"prewatch_test": "npm run build_spec",
"watch": "npm-run-all --parallel watch_spec watch_jasmine",
"build_all": "npm-run-all build_cjs generate_package",
"pretest": "npm run build_all",
"test": "npm-run-all clean_spec build_spec jasmine clean_spec generate_package",
"prewatch": "npm run build_spec",
"watch_jasmine": "watch \"npm-run-all jasmine\" js/spec -d -u -w=5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elhedran/rxjs-dew-react.git"
},
"keywords": [
"typescript",
"rxjs"
],
"author": "elhedran@gmail.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elhedran/rxjs-dew-react/issues"
},
"homepage": "https://github.com/elhedran/rxjs-dew-react#readme",
"devDependencies": {
"@types/jasmine": "^2.8.7",
"@types/prop-types": "^15.5.2",
"@types/react": "^15.6.15",
"jasmine": "^2.99.0",
"jsdom": "^15.1.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"shx": "^0.2.2",
"tslint": "^5.10.0",
"typescript": "2.3.4",
"watch": "^1.0.2"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^15.6.2",
"rxjs": "^5.5.10",
"rxjs-dew": "^0.6.7"
},
"peerDependencies": {
"@types/prop-types": "^15.5.1",
"@types/react": "^15.0.5"
}
}