-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "isolated-core",
"description": "Seamless client side updates using iframes.",
"version": "0.1.1",
"keywords": [
"update",
"iframe"
],
"license": "MIT",
"author": {
"name": "Max Goodman",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint ./src ./test ./demo/src",
"test": "karma start karma.conf.js",
"test:sauce": "karma start karma-sauce.conf.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"main": "lib/index.js",
"repository": "chromakode/isolated-core",
"devDependencies": {
"core-js": "~2.0.3",
"babel": "~6.3.26",
"babel-core": "~6.4.5",
"babel-register": "~6.3.13",
"babel-cli": "~6.3.17",
"babel-plugin-transform-object-rest-spread": "~6.3.13",
"babel-preset-es2015": "~6.3.13",
"webpack": "~1.12.11",
"mocha": "~2.3.4",
"karma": "~0.13.19",
"karma-mocha": "~0.2.1",
"karma-mocha-reporter": "~1.1.5",
"karma-phantomjs-launcher": "~0.2.3",
"karma-sauce-launcher": "~0.3.0",
"karma-coverage": "~0.5.3",
"karma-webpack": "~1.7.0",
"karma-sourcemap-loader": "~0.3.7",
"babel-loader": "~6.2.1",
"isparta-loader": "~2.0.0",
"phantomjs": "~1.9.19",
"expect": "~1.13.4",
"eslint": "~1.10.3",
"eslint-config-airbnb": "~2.0.0",
"eslint-plugin-react": "~3.11.3",
"babel-eslint": "~4.1.6",
"escope": "~3.3.0"
}
}