-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "njsx",
"version": "3.0.1",
"description": "No-JSX: A customizable interface for creating React and React-Native components without JSX syntax. For more information visit https://github.com/uqbar-project/njsx.",
"repository": "https://github.com/uqbar-project/njsx",
"author": "Nicolás Scarcella",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint src/index.ts",
"test": "mocha --recursive --require ts-node/register src/**/*.test.tsx",
"prepublishOnly": "yarn install && yarn lint && yarn test && yarn build"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"devDependencies": {
"@types/react": "^16.3.14",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"mock-require": "^3.0.2",
"react": "15.0.0",
"ts-mocha": "^1.2.0",
"tslint": "^5.10.0",
"tslint-react": "^3.5.1",
"typescript": "^2.8.3"
},
"keywords": [
"react",
"react-native",
"jsx",
"tag",
"builder",
"functional",
"syntax sugar"
]
}