-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "cycle-react-pragma",
"version": "0.1.0",
"description": "A JSX pragma for @cycle/react",
"main": "lib/cjs/jsx-factory.js",
"typings": "lib/cjs/jsx-factory.d.ts",
"types": "lib/cjs/jsx-factory.d.ts",
"repository": "[email protected]:sliptype/cycle-react-pragma.git",
"keywords": [
"cyclejs",
"react",
"jsx"
],
"author": "sliptype <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cycle/react": "^2.1.0",
"@cycle/react-dom": "^2.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"@types/react": "^16.8.14",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "^4.0.0",
"karma-typescript-es6-transform": "^4.0.0",
"mocha": "^6.1.4",
"react": "16.5.2",
"typescript": "^3.4.5"
},
"peerDependencies": {
"@cycle/react": "^2.1.0",
"@types/react": "^16.4.0",
"react": "^16.8.6"
},
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run compile-cjs",
"compile-cjs": "tsc --module commonjs --outDir ./lib/cjs",
"test": "karma start karma.config.js"
}
}