This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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": "mocha-aura",
"description": "Test Salesforce Aura Lightning components with mocha",
"author": {
"name": "Yuriy Sannikov",
"email": "[email protected]"
},
"version": "1.0.3",
"main": "dist/index.js",
"mainumd": "dist/mocha-aura.umd.js",
"module": "aura.js",
"jsnext:main": "aura.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yury-sannikov/mocha-aura.git"
},
"keywords": [
"Salesforce",
"force.com",
"Aura",
"Lightning",
"mocha",
"istanbul"
],
"files": [
"dist"
],
"scripts": {
"init": "mkdir dist",
"clean": "rm -rf dist",
"prebuild": "eslint lib test",
"build": "rollup -c --environment BUILD:production && rollup -c rollup-hooks.config.js --environment BUILD:production",
"watch": "rollup -c --environment BUILD:production -w",
"pretest": "rollup -c && rollup -c rollup-hooks.config.js",
"test": "mocha",
"prepublish": "npm test"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"chai": "^4.0.2",
"chokidar-cli": "^1.2.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-runner": "^1.1.2",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-watch": "^4.0.0",
"sinon-chai": "^2.11.0"
},
"dependencies": {
"app-module-path": "^2.2.0",
"help": "^3.0.2",
"lodash": "^4.17.4",
"sinon": "^2.3.6"
}
}