-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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": "spet-ui5-jsx-rm",
"version": "0.0.1",
"description": "Babel plugin for converting JSX to UI5 render manager calls.",
"main": "src/index.js",
"author": "Serban Petrescu",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/serban-petrescu/ui5-jsx-rm.git"
},
"bugs": {
"url": "https://github.com/serban-petrescu/ui5-jsx-rm/issues"
},
"license": "Apache-2.0",
"scripts": {
"test": "jest --coverage",
"test:publish": "shx cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"build": "babel sample/src --out-dir sample/dist --source-maps",
"build:watch": "babel sample/src --out-dir sample/dist --source-maps --watch",
"start": "serve sample"
},
"dependencies": {
"babel-code-frame": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-runtime": "^6.18.0",
"babel-template": "^6.25.0",
"babel-types": "^6.25.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-tester": "^3.2.2",
"babel-preset-env": "^1.5.2",
"coveralls": "^2.13.1",
"jest": "^20.0.4",
"serve": "^6.0.2",
"shx": "^0.2.2"
}
}