This repository was archived by the owner on Aug 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 KB
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
{
"name": "@buildium/angular-walkme",
"version": "1.1.2",
"description": "An AngularJS module for interfacing with the WalkMe API",
"main": "src/module.js",
"scripts": {
"lint": "semistandard",
"lint:fix": "semistandard --fix",
"pretest": "npm run lint",
"test": "karma start --single-run",
"compile": "babel src --out-dir lib/ --presets=es2015",
"predist": "mkdirp dist",
"dist:angular": "browserify lib/module.js -o dist/buildium-angular-walkme.js",
"dist:wrapper": "browserify lib/wrapper.js -o dist/buildium-walkme-wrapper.js",
"dist": "npm run dist:angular && npm run dist:wrapper",
"prepublish": "npm run compile && npm run dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/buildium/angular-walkme.git"
},
"keywords": [
"angular",
"walkme",
"api"
],
"author": "Buildium <buidiumadmin@buildium.com",
"license": "MIT",
"homepage": "https://bitbucket.org/buildium/angular-walkme#readme",
"devDependencies": {
"angular": "1.6.4",
"angular-mocks": "1.6.4",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"browserify": "16.2.3",
"chai": "3.5.0",
"dirty-chai": "2.0.1",
"faker": "4.1.0",
"karma": "3.1.4",
"karma-browserify": "6.0.0",
"karma-chai": "0.1.0",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon": "1.0.5",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"semistandard": "11.0.0",
"sinon": "2.2.0",
"watchify": "3.9.0"
},
"peerDependencies": {
"angular": ">=1.0.8"
},
"dependencies": {
"babelify": "7.3.0",
"es6-promise": "4.1.0",
"lodash": "4.17.11"
},
"semistandard": {
"env": {
"mocha": true,
"jasmine": true
}
}
}