-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.61 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": "draft-js-ast-importer",
"version": "2.0.3",
"description": "Allows you to import an abstract syntax tree (AST) output from the companion draft-js-ast-exporter.",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
"build:cjs": "NODE_ENV=cjs babel src --out-dir lib",
"build:esm": "NODE_ENV=esm babel src --out-dir esm",
"compile": "npm run build:cjs && npm run build:esm",
"precompile": "npm run clean",
"prepublish": "npm run compile",
"test": "NODE_ENV=test babel-node test | faucet",
"posttest": "npm run lint",
"clean": "rm -rf ./lib/*",
"lint": "eslint 'src/*.js' 'src/**/*.js'; exit 0",
"watch": "wr 'npm run build' ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/icelab/draft-js-ast-importer.git"
},
"keywords": [
"draft-js",
"export",
"import"
],
"authors": [
"Max Wheeler <[email protected]> (https://github.com/makenosound)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/icelab/draft-js-ast-importer/issues"
},
"homepage": "https://github.com/icelab/draft-js-ast-importer",
"dependencies": {
"immutable": "~3.7.4"
},
"peerDependencies": {
"draft-js": ">=0.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"draft-js": ">=0.10.0",
"eslint": "2.8.0",
"eslint-config-standard": "5.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "1.3.2",
"faucet": "0.0.1",
"is-function": "1.0.1",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"tape": "4.5.1",
"wr": "^1.3.1"
}
}