-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
45
46
47
48
49
50
51
{
"name": "react-molecule",
"version": "0.2.1",
"description": "React Molecule is a bridge between components",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cult-of-coders/react-molecule.git"
},
"scripts": {
"compile": "tsc",
"pretest": "npm run compile",
"test": "npm run testonly --",
"lint": "tslint --type-check --project ./tsconfig.json ./src/**/*",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/__tests__/*.js",
"testonly-watch": "mocha --reporter spec --full-trace ./dist/__tests__/*.js --watch",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/__tests__/*.js",
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info",
"prepublishOnly": "npm run compile"
},
"peerDependencies": {
"react": "^16.8.x"
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/react": "^16.9.5",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"istanbul": "^0.4.5",
"mobx": "4.1.1",
"mobx-react": "^5.4.4",
"mocha": "^3.5.3",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"remap-istanbul": "^0.11.1",
"tslint": "^5.20.0",
"typescript": "^3.2.2"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"license": "MIT",
"dependencies": {
"eventemitter3": "^3.1.2"
}
}