-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "@nestorrente/reactionjs",
"version": "0.4.2",
"description": "",
"main": "dist/reaction.bundle.js",
"module": "dist/reaction.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "webpack",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"reactivity",
"reactive",
"model",
"watch",
"watcher",
"watchers",
"computed",
"derived",
"property",
"properties"
],
"author": "Néstor Pérez González",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.13.15",
"jest": "^25.5.4",
"prettier": "^1.19.1",
"ts-jest": "^25.5.1",
"ts-loader": "^6.2.2",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7",
"typescript-bundle": "^1.0.16",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/nestorrente/reactionjs.git"
},
"dependencies": {
"@nestorrente/event-bus": "^1.0.5"
}
}