-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.74 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
52
53
54
55
56
57
{
"name": "easify",
"version": "0.2.0",
"description": "Creating lists and complex tables with pagination and filters very fast",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cult-of-coders/easify.git"
},
"scripts": {
"clean": "rimraf dist coverage",
"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 clean && npm run compile"
},
"peerDependencies": {
"react": "16.x",
"react-molecule": "0.2.x",
"simpl-schema": "1.x",
"mobx": ">= 5.x.x",
"mobx-react": ">= 5.x.x"
},
"devDependencies": {
"@types/react": "^16.3.9",
"@types/react-form": "^2.16.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"istanbul": "^0.4.5",
"mobx": "^5.8.0",
"mobx-react": "^6.1.3",
"mocha": "^3.3.0",
"react": "16.3.1",
"react-dom": "^16.3.1",
"remap-istanbul": "^0.11.1",
"rimraf": "^2.6.2",
"simpl-schema": "^1.5.0",
"tslint": "^5.2.0",
"typescript": "^3.2.2"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"license": "MIT",
"dependencies": {
"react-molecule": "^0.2.1"
}
}