forked from ianfixes/manticore-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 3.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "paypal-manticore",
"version": "1.0.0",
"description": "A runtime to expose Javascript classes, logic and code to native components",
"main": "build/index.js",
"bin": "./build/gen/index.js",
"scripts": {
"lint": "eslint .",
"precommit-lint": "eslint .; true",
"test": "babel-node ./node_modules/.bin/tape test/**/test_*.js",
"testSome": "babel-node ./node_modules/.bin/tape",
"build-testjs": "babel-node ./mantify.js ./output/index.pack.js test/js-source/index.js",
"objc-polyfill": "babel-node ./mantify.js runtime/objc/js/polyfill.pack.js runtime/objc/js/polyfill.js",
"objc-testjs": "mkdirp output/objc && babel-node -- gen/index.js -q ./runtime/objc/templates ./output/objc test/js-source/*.js",
"android-polyfill": "babel-node ./mantify.js runtime/android/manticore/src/main/res/raw/polyfill_pack.js runtime/android/js/polyfill.js",
"android-testjs": "babel-node -- gen/index.js -q ./runtime/android/templates ./runtime/android/manticore/src/test/java/com/paypal/manticore/ test/js-source/*.js",
"win-polyfill": "babel-node ./mantify.js runtime/win/generated/polyfill.clearscript.pack.js runtime/win/js/polyfill.clearscript.js && babel-node ./mantify.js runtime/win/generated/polyfill.jint.pack.js runtime/win/js/polyfill.jint.js",
"win-testjs": "mkdirp runtime/win/generated/jint runtime/win/generated/ClearScript && babel-node -- gen/index.js -q ./runtime/win/templates/jint runtime/win/generated/jint test/js-source/*.js && babel-node -- gen/index.js -q ./runtime/win/templates/clearscript runtime/win/generated/ClearScript test/js-source/*.js",
"build": "babel index.js --out-dir build && babel gen --out-dir build/gen",
"dev": "git submodule update --init --recursive && npm run build-testjs && npm run objc-polyfill && npm run android-polyfill && npm run win-polyfill && npm run objc-testjs && npm run android-testjs && npm run win-testjs"
},
"repository": {
"type": "git",
"url": "https://github.paypal.com/RetailSDK-NewGen/paypal-manticore"
},
"keywords": [
"nodejs",
"mobile",
"javascript",
"sdk"
],
"author": "PayPal",
"license": "Apache-2.0",
"dependencies": {
"acorn-es7-plugin": "^1.0.12",
"ansidiff": "^1.0.0",
"babel-polyfill": "^6.7.4",
"babel-regenerator-runtime": "^6.5.0",
"bluebird": "^3.3.4",
"docchi": "^0.12.0",
"dustjs-helpers": "^1.7.3",
"dustjs-linkedin": "^2.7.2",
"fs-extra": "^0.26.7",
"glob": "^7.0.3",
"lodash": "^4.6.1",
"node-fetch": "^1.4.1",
"yaku": "^0.14.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.0",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-regenerator": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"eslint": "^2.5.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3",
"mkdirp": "^0.5.1",
"pre-commit": "^1.1.2",
"tape": "^4.5.1",
"uglifyify": "^3.0.1"
},
"pre-commit": [
"precommit-lint"
]
}