-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "iframe-action-communicator",
"version": "1.0.1",
"description": "js action communicator between parent window and iframe",
"main": "./dist/iframe-action-communicator.min.js",
"repository": {
"type": "git",
"url": "https://github.com/maplemap/iframe-action-communicator"
},
"bugs": {
"url": "https://github.com/maplemap/iframe-action-communicator/issues"
},
"scripts": {
"start": "npm run dev",
"dev": "npm test -- -w",
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./src -d ./dist --ignore test.js && node build.js",
"pretest": "npm run build",
"test": "mocha --compilers js:babel-core/register test.js",
"test:single": "mocha --compilers js:babel-core/register"
},
"author": {
"name": "Sergey Illarionov <easthunch@gmail.com>"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"google-closure-compiler-js": "^20170521.0.0",
"jest-cli": "^20.0.4",
"jsdom": "^11.0.0",
"mocha": "^3.1.2",
"mocha-jsdom": "^1.1.0"
}
}