-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "@adapt-retail/adapt-event",
"version": "0.2.1",
"description": "Dispatch events eventa to adapt and other.",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && ava",
"tdd": "executor 'npm run test' --watch='**/*.js' --ignore='node_modules/' --ignore='dist/'",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdaptRetail/adapt-event.git"
},
"keywords": [
"adapt-retail",
"adapt",
"banners",
"instore-tv",
"template"
],
"author": "Lasse S. Haslev",
"license": "ISC",
"bugs": {
"url": "https://github.com/AdaptRetail/adapt-event/issues"
},
"homepage": "https://github.com/AdaptRetail/adapt-event#readme",
"devDependencies": {
"@lassehaslev/executor": "^1.0.1",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-env": "^3.2.5",
"sinon": "^4.4.2"
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js",
"./test/helpers/adapt-event.js"
]
}
}