-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.67 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "casium",
"version": "2.3.0",
"description": "Casium — An application architecture for React",
"module": "./index.js",
"browser": "dist/casium.umd.js",
"types": "./index.d.ts",
"repository": "https://github.com/ai-labs-team/casium.git",
"author": "Nate Abele <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"peers": "install-self-peers -- --ignore-scripts",
"build": "yarn peers; rm -r ./dist; tsc; cp package.json ./dist; cp README.md ./dist; rollup -c; yarn docs",
"build/fast": "tsc; cp package.json ./dist; cp README.md ./dist; rollup -c;",
"docs": "typedoc --json dist/api.json --mode modules --tsconfig tdconfig.json",
"lint": "NODE_ENV=test tslint -c tslint.json --format stylish \"src/**/*.{js,ts,jsx,tsx}\"",
"test": "./run.sh 'npm run lint' 'npm run unit-test'",
"dev": "nodemon -w src -e ts,tsx --exec yarn unit-test",
"dev/fast": "nodemon -w src -e ts,tsx --exec yarn build/fast;",
"unit-test": "nyc mocha -r test/setup.js --opts test/mocha.opts",
"debug-tests": "mocha -r test/setup.js --opts test/mocha.opts --inspect-brk"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@team-griffin/install-self-peers": "^1.1.1",
"@types/chai": "4.1.6",
"@types/enzyme": "3.1.14",
"@types/mocha": "5.2.5",
"@types/node": "^14.0.13",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.38",
"chai": "4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"cheerio": "1.0.0-rc.2",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"jsdom": "12.2.0",
"jsdom-global": "3.0.2",
"jss": "9.8.7",
"marked": "^1.1.0",
"mocha": "5.2.0",
"nodemon": "^1.18.10",
"nyc": "13.0.1",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.5.2",
"react-test-renderer": "16.5.2",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typedoc": "^0.17.7",
"typescript": "3.9.5",
"url-parse": "1.4.3"
},
"peerDependencies": {
"axios": "^0.16.0 || ^0.17.0 || ^0.18.0",
"deep-freeze-strict": "^1.1.0",
"js-cookie": "^2.1.4",
"prop-types": "^15.0.0-0 || ^16.0.0-0",
"ramda": "^0.25.0 || ^0.26.0",
"react": "^16.2.0"
},
"nyc": {
"include": [
"src/**/*.{ts,tsx}"
],
"exclude": [
"**/*_test.{ts,tsx}",
"src/effects/*.{ts,tsx}",
"src/components/error.tsx"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html",
"lcov"
]
},
"dependencies": {
"@ailabs/fast-deep-equal": "3.2.1"
}
}