-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "r-state-tree",
"version": "0.2.0",
"description": "reactive state management library",
"main": "lib/r-state-tree.js",
"module": "lib/r-state-tree.module.js",
"files": [
"lib/*"
],
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"build": "rollup -c rollup.config.js",
"lint": "eslint ./src ./tests --ext .ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melnikov-s/r-state-tree.git"
},
"author": "Sergey Melnikov",
"license": "MIT",
"bugs": {
"url": "https://github.com/melnikov-s/r-state-tree/issues"
},
"homepage": "https://github.com/melnikov-s/r-state-tree#readme",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.8",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"rollup": "^3.16.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"nu-observables": "^0.0.6",
"nu-reactive-graph": "latest"
}
}