• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "ace-loader",
3  "version": "1.0.11",
4  "description": "a webpack loader for ace",
5  "main": "index.js",
6  "private": true,
7  "keywords": [
8    "ace",
9    "loader",
10    "webpack",
11    "Lite",
12    "Rich"
13  ],
14  "scripts": {
15    "build": "./node_modules/.bin/babel ./third_party/weex-loader/src ./src --out-dir lib && node ./module-source.js ./lib && node ./uglify-source.js ./lib",
16    "rich": "cd sample/rich && webpack --config ../../webpack.rich.config.js",
17    "lite": "cd sample/lite && webpack --config ../../webpack.lite.config.js",
18    "card": "cd sample/card && webpack --config ../../webpack.rich.config.js",
19    "postinstall": "node npm-install.js",
20    "richtest": "cd test/rich/testcase && webpack --config ../../../webpack.rich.config.js && mocha ../test.js",
21    "litetest": "cd test/lite/testcase && webpack --config ../../../webpack.lite.config.js && mocha ../test.js",
22    "cardtest": "cd test/card/testcase && webpack --config ../../../webpack.rich.config.js && mocha ../test.js",
23    "test": "npm run build && npm run richtest && npm run litetest && npm run cardtest",
24    "testrunner": "cd sample/TestRunner && webpack --config ../../webpack.rich.config.js"
25  },
26  "devDependencies": {
27    "chai": "^3.5.0",
28    "eslint": "^7.3.1",
29    "eslint-config-google": "^0.14.0",
30    "mocha": "^7.1.2",
31    "sinon": "^1.17.3",
32    "sinon-chai": "^2.8.0"
33  },
34  "dependencies": {
35    "@babel/cli": "^7.8.4",
36    "@babel/core": "^7.9.0",
37    "@babel/plugin-proposal-class-properties": "^7.8.3",
38    "@babel/plugin-transform-runtime": "^7.12.10",
39    "@babel/preset-env": "^7.9.0",
40    "@babel/runtime": "^7.0.0",
41    "babel-loader": "^8.0.6",
42    "babel-plugin-require-context-hook": "^1.0.0",
43    "copy-webpack-plugin": "^8.1.0",
44    "css": "^3.0.0",
45    "css-loader": "^3.4.2",
46    "deccjsunit": "^1.0.8",
47    "escodegen": "^2.0.0",
48    "esprima": "^4.0.1",
49    "hash-sum": "^1.0.2",
50    "jimp": "^0.12.1",
51    "less": "^3.11.1",
52    "less-loader": "^5.0.0",
53    "loader-utils": "^1.1.0",
54    "md5": "^2.1.0",
55    "parse5": "^2.1.5",
56    "resolve-bin": "^0.4.0",
57    "sass": "^1.26.8",
58    "sass-loader": "^7.3.1",
59    "shelljs": "^0.8.5",
60    "source-map": "^0.7.3",
61    "uglify-es": "^3.3.9",
62    "webpack": "5.48.0",
63    "webpack-cli": "^4.6.0"
64  },
65  "babel": {
66    "presets": [
67      "@babel/preset-env"
68    ],
69    "plugins": [
70      "@babel/plugin-transform-modules-commonjs",
71      "@babel/plugin-proposal-class-properties",
72      [
73        "@babel/plugin-transform-arrow-functions",
74        {
75          "spec": true
76        }
77      ]
78    ]
79  }
80}
81