-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "docs-soap",
"version": "1.2.1",
"description": "A utility for cleaning Google Docs clipboard content into valid HTML",
"author": "aem <[email protected]>",
"keywords": [
"google gocs",
"clipboard",
"draft js",
"draftjs"
],
"repository": {
"type": "git",
"url": "https://www.github.com/aem/docs-soap"
},
"bugs": {
"url": "https://www.github.com/aem/docs-soap/issues"
},
"license": "ISC",
"main": "index.js",
"scripts": {
"codecov": "istanbul cover ./node_modules/.bin/_mocha -- test --recursive --compilers js:babel-register && codecov",
"test": "mocha --compilers js:babel-register test",
"lint": "eslint --ext '.js' ./src",
"flow": "flow",
"build-lib": "babel src --out-dir lib --plugins=transform-flow-strip-types --presets=es2015",
"build-dev": "webpack --config webpack.config.dev.js",
"build-prod": "webpack --config webpack.config.prod.js",
"build": "npm-run-all build-lib build-dev build-prod"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.22.1",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.9.0",
"codecov": "^1.0.1",
"eslint": "^2.11.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-flowtype": "^2.3.0",
"eslint-plugin-import": "^1.8.1",
"expect": "^1.20.1",
"flow-bin": "^0.28.0",
"istanbul": "1.0.0-alpha.2",
"jsdom": "^9.2.1",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"npm-run-all": "^4.0.2",
"webpack": "^2.2.1"
}
}