-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 897 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
30
31
32
33
34
35
36
37
38
{
"name": "reflecti",
"version": "0.1.0",
"description": "A microframework frontend thats easy",
"main": "dist/reflecti.js",
"scripts": {
"test": "jest -c .jestrc.json",
"lint": "tslint --fix src/**/*.ts",
"build": "rm -rf dist && tsc && babel dist --out-dir dist"
},
"files": [
"dist/reflecti.js",
"src"
],
"keywords": [
"reflecti",
"frontend",
"framework",
"virtual dom",
"vdom",
"components"
],
"author": "Sean Chamberlain",
"license": "MIT",
"typings": "./src/index.d.ts",
"repository": "seanchambo/reflecti",
"devDependencies": {
"@types/jest": "^22.2.3",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"jest": "^23.0.1",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^2.8.3"
}
}