-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 923 Bytes
/
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
{
"name": "fine-grained-reactivity-demo",
"description": "Typed JavaScript demo of fine-grained reactive programming.",
"version": "0.2.0",
"author": "Peer Reynders",
"license": "MIT",
"homepage": "https://github.com/peerreynders/fine-grained-reactivity-demo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/peerreynders/fine-grained-reactivity-demo.git"
},
"private": "true",
"scripts": {
"lint:types": "cd ./reactivity && npm run lint:types",
"lint:es": "eslint ./reactivity",
"lint": "npm run lint:types && npm run lint:es",
"format": "prettier --write .",
"test": "cd ./reactivity && npm run test"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-tsdoc": "^0.2.11",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}