-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1009 Bytes
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
{
"name": "@adapt-retail/animation-framework",
"version": "0.0.1",
"description": "A framework for quickly and structured create HTML5 animations with both HTML elements and video.",
"main": "dist/index.js",
"scripts": {
"test": "ava",
"tdd": "executor 'npm run build && npm run test' --watch='**/*.js' --ignore='node_modules/' --ignore='dist/'",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/AdaptRetail/animation-framework"
},
"author": "Lasse S. Haslev <lasse@haslev.no>",
"license": "MIT",
"devDependencies": {
"@lassehaslev/executor": "^1.0.1",
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"browser-env": "^3.2.1"
},
"dependencies": {
"gsap": "^1.20.3",
"mustache": "^2.3.0"
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
}
}