-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "react-simple-format",
"version": "0.3.0",
"description": "Turns double newlines into different paragraphs. Similar to RoR simple_format.",
"main": "lib/index",
"repository": {
"type": "git",
"url": "https://github.com/rilkevb/react-simple-format.git"
},
"authors": [
"chibicode, rilkevb"
],
"license": "MIT",
"//": "TODO review the dependencies",
"scripts": {
"build": "mkdir -p lib && babel ./src/index.js --out-file ./lib/index.js",
"lint": "eslint src test",
"test": "mocha --compilers js:babel-core/register --require ./test/setup.js --recursive ./test",
"test:watch": "mocha --compilers js:babel-core/register --require ./test/setup.js --recursive ./test -w",
"prepublish": "npm run build"
},
"tags": [
"react"
],
"keywords": [
"react",
"SimpleFormat",
"simple_format",
"ES6"
],
"devDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"babel-cli": "^6.1.2",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-assign": "^6.0.14",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"jsdom": "^7.2.2",
"mocha": "^2.3.4",
"react-addons-test-utils": "^15.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"sanitize-html": "^1.11.1"
},
"standard": {
"global": [
"describe",
"it"
],
"parser": "babel-eslint"
}
}