-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "recks",
"version": "0.0.14",
"description": "Stream driven framework",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"es2015": "./dist/es2015/index.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/recks.min.js",
"sideEffects": false,
"scripts": {
"start": "webpack --config configs/webpack.dev.js",
"clean": "rimraf temp dist",
"build": "npm run build:esm && npm run build:es2015 && npm run build:cjs && npm run build:types && npm run build:umd && npm run build:umd:min",
"build:esm": "tsc -p configs/tsconfig.esm.json",
"build:es2015": "tsc -p configs/tsconfig.es2015.json",
"build:cjs": "tsc -p configs/tsconfig.cjs.json",
"build:types": "tsc -p configs/tsconfig.types.json",
"build:umd": "webpack --config configs/webpack.build.js -o dist/recks.js",
"build:umd:min": "webpack --config configs/webpack.build.min.js -o dist/recks.min.js",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand",
"np": "npm run build && np && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recksjs/recks.git"
},
"keywords": [
"framework",
"rxjs",
"jsx"
],
"author": "Kostiantyn Palchyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/recksjs/recks/issues"
},
"homepage": "https://github.com/recksjs/recks#readme",
"devDependencies": {
"@types/jest": "26.0.13",
"clean-webpack-plugin": "3.0.0",
"husky": "4.3.0",
"jest": "26.4.2",
"lint-staged": "10.3.0",
"np": "6.5.0",
"prettier": "2.1.1",
"rimraf": "3.0.2",
"rxjs": "6.5.3",
"ts-jest": "26.3.0",
"ts-loader": "8.0.3",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-merge": "5.1.4",
"webpack-rxjs-externals": "^2.0.0"
},
"peerDependencies": {
"rxjs": "6.6.3",
"tslib": "2.0.1"
},
"files": [
"dist",
"LICENSE",
"CHANGELOG",
"README.md"
],
"dependencies": {}
}