-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "babel-plugin-transform-class",
"version": "0.3.0",
"description": "Compile ES2015 classes to ES5 or ES3 + polyfill",
"keywords": [
"babel-plugin",
"es2015",
"es6",
"class",
"extends",
"super"
],
"author": "Alexandre Morgaut (http://github.com/AMorgaut)",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AMorgaut/babel-plugin-transform-class.git"
},
"bugs": {
"url": "https://github.com/AMorgaut/babel-plugin-transform-class/issues"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "nyc --require babel-core/register mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-runtime": "^6.11.6",
"babel-plugin-transform-runtime": "6.23.0",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^11.0.2"
}
}