This repository was archived by the owner on Feb 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "slate-sugar",
"description": "Create Slate documents using JSX.",
"version": "0.6.1",
"license": "Apache-2.0",
"repository": "git://github.com/GitbookIO/slate-sugar.git",
"main": "./dist/index.js",
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"slate": "^0.20.1"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.9.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^3.1.1",
"eslint-config-gitbook": "1.4.0",
"eslint-plugin-flowtype": "^2.34.0",
"flow-bin": "^0.47.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"slate": "^0.20.1"
},
"scripts": {
"lint": "eslint .",
"types": "flow",
"pretest": "npm run lint && npm run types",
"test": "ava",
"test:watch": "ava --watch",
"prebuild": "npm test && rm -rf ./dist",
"build": "babel src --out-dir dist --ignore __tests__",
"prepublish": "npm run build"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"keywords": [
"slate"
],
"files": [
"dist",
"LICENSE",
"package.json"
]
}