-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "react-tiny-mvvm",
"version": "0.0.5",
"description": "A light mvvm framework for react development.",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TECHF5VE/react-tiny-mvvm.git"
},
"keywords": [
"react",
"mvvm",
"message",
"messenger"
],
"author": "Hui",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/TECHF5VE/react-tiny-mvvm/issues"
},
"homepage": "https://github.com/TECHF5VE/react-tiny-mvvm#readme",
"devDependencies": {
"@types/node": "^8.5.7",
"typescript": "^2.6.1",
"@types/jest": "^22.0.1",
"@types/react": "^16.0.34",
"@types/react-dom": "^16.0.3"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/lib"
]
}