• 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    "buildparse5": "cd ./third_party/parse5/packages/parse5 && ./node_modules/typescript/bin/tsc --module CommonJS --target ES6 --outDir dist/cjs && cd ../../../../",
16    "build": "./node_modules/.bin/babel ./third_party/weex-loader/src ./src --out-dir lib && npm run buildparse5 && node ./module-source.js ./lib && node ./uglify-source.js ./lib",
17    "rich": "cd sample/rich && webpack --config ../../webpack.rich.config.js",
18    "lite": "cd sample/lite && webpack --config ../../webpack.lite.config.js",
19    "card": "cd sample/card && webpack --config ../../webpack.rich.config.js",
20    "postinstall": "node npm-install.js",
21    "richtest": "cd test/rich/testcase && webpack --config ../../../webpack.rich.config.js && mocha ../test.js",
22    "litetest": "cd test/lite/testcase && webpack --config ../../../webpack.lite.config.js && mocha ../test.js",
23    "cardtest": "cd test/card/testcase && webpack --config ../../../webpack.rich.config.js && mocha ../test.js",
24    "test": "npm run build && npm run richtest && npm run litetest && npm run cardtest",
25    "testrunner": "cd sample/TestRunner && webpack --config ../../webpack.rich.config.js"
26  },
27  "devDependencies": {
28    "chai": "4.3.7",
29    "eslint": "8.34.0",
30    "lodash": "4.17.21",
31    "mocha": "10.2.0",
32    "sinon": "15.0.4"
33  },
34  "dependencies": {
35    "@babel/cli": "7.20.7",
36    "@babel/core": "7.20.12",
37    "@babel/plugin-proposal-class-properties": "7.18.6",
38    "@babel/plugin-transform-runtime": "7.19.6",
39    "@babel/preset-env": "7.20.2",
40    "@babel/runtime": "7.20.13",
41    "babel-loader": "9.1.2",
42    "copy-webpack-plugin": "11.0.0",
43    "css-loader": "6.7.1",
44    "deccjsunit": "^1.0.8",
45    "jimp": "0.22.4",
46    "stylus": "0.57.0",
47    "less": "4.1.3",
48    "less-loader": "11.1.0",
49    "loader-utils": "1.4.2",
50    "parse5": "7.0.0",
51    "resolve-bin": "1.0.1",
52    "sass": "1.62.0",
53    "sass-loader": "13.2.2",
54    "shelljs": "0.8.5",
55    "source-map": "0.7.4",
56    "uglify-js": "3.17.4",
57    "webpack": "5.72.1",
58    "webpack-cli": "5.0.2"
59  },
60  "babel": {
61    "presets": [
62      "@babel/preset-env"
63    ],
64    "plugins": [
65      "@babel/plugin-transform-modules-commonjs",
66      "@babel/plugin-proposal-class-properties",
67      [
68        "@babel/plugin-transform-arrow-functions",
69        {
70          "spec": true
71        }
72      ]
73    ]
74  }
75}
76