-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1000 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1000 Bytes
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
{
"name": "corky",
"version": "0.0.14",
"description": "",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"compile": "babel --presets es2015 -d dist/ src/ && copyfiles -u 1 src/**/*.d.ts dist",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js \"test/**/*.@(js)\""
},
"repository": {
"type": "git",
"url": ""
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"Corky"
],
"author": "David Abram",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "6.10.4",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"copyfiles": "0.2.1",
"jsdom": "9.4.1",
"json-server": "0.8.14",
"mocha": "2.5.3"
},
"dependencies": {
"director": "1.2.8",
"object-assign": "4.1.0",
"redux": "3.6.0",
"redux-catch": "1.3.1",
"redux-logger": "2.7.4",
"redux-thunk": "2.1.0",
"riot": "3.0.5",
"superagent": "3.3.1"
}
}