-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "@adapt-retail/print-data",
"version": "1.0.0",
"description": "Communicate with the API and Adapt the same way using the same syntax, even when you work local or in Adapt",
"main": "dist/AdaptPrintData.js",
"dependencies": {
"@adapt-retail/banner-data": "^0.1.0",
"mustache": "^2.3.0"
},
"devDependencies": {
"@lassehaslev/executor": "^1.0.1",
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"browser-env": "^3.2.1"
},
"scripts": {
"test": "ava",
"tdd": "executor 'npm run test' --watch='**/*.js' --ignore='node_modules/'",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdaptRetail/print-data.git"
},
"author": "Lasse S. Haslev",
"license": "ISC",
"bugs": {
"url": "https://github.com/AdaptRetail/print-data/issues"
},
"homepage": "https://github.com/AdaptRetail/print-data#readme",
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
}
}