forked from nteract/ansi-to-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 KB
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
{
"name": "ansi-to-react",
"version": "1.2.0",
"description": "ANSI to React Elements",
"main": "lib/index.js",
"scripts": {
"prebuild": "mkdirp lib/ && npm run clean",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-core/register 'test/**/*.js'",
"test:watch": "npm run test -- --watch",
"build": "npm run build:es5",
"build:es5": "babel src --out-dir lib/ --source-maps",
"clean": "rimraf lib/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nteract/ansi-to-react.git"
},
"keywords": [
"ansi",
"react"
],
"babel": {
"presets": [
"es2015",
"stage-3",
"react"
]
},
"author": "Kyle Kelley <rgbkrk@gmail.com>",
"license": "MPL-2.0",
"dependencies": {
"anser": "^1.1.0",
"escape-carriage": "^1.0.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-3": "^6.22.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"mkdirp": "0.5.1",
"mocha": "^3.2.0",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"rimraf": "^2.5.2",
"should": "^11.1.2"
}
}