-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 917 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 917 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
{
"name": "@gladeye/af",
"version": "1.0.4",
"repository": {
"type" : "git",
"url" : "https://github.com/gladeye/af"
},
"main": "dist/af.cjs.js",
"module": "dist/af.esm.js",
"browser": "dist/af.umd.js",
"description": "Animation Frame class & instance with read and write cycles to maximise performance",
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"files": [
"dist"
],
"author": "William Hamlin <[email protected]>",
"license": "MIT"
}