-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "@sinups/post-message",
"version": "1.0.1",
"description": "postMessage api",
"main": "dist/index.js",
"types": "src/index.d.ts",
"scripts": {
"clean-dist": "rm -rf ./dist",
"build": "npm run clean-dist && npm run transpile",
"transpile": "NODE_ENV='production' babel src -d dist",
"lint": "eslint src/**; exit 0",
"prepublishOnly": "npm run build",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git@github.com:sinups/post-message.git"
},
"author": "AK",
"bugs": {
"url": "https://github.com/sinups/post-message/issues"
},
"homepage": "https://github.com/sinups/post-message#readme",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0"
}
}