-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 886 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 886 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
{
"name": "adobe-animate-parser",
"version": "0.0.4",
"description": "Parses CreateJS based Adobe Animate Files",
"main": "index.js",
"scripts": {
"prepare": "cross-env COCO_BUILD=true babel src -d ./",
"build": "mkdir -p dist && cross-env COCO_BUILD=true babel src -d dist && cp package.json ./dist",
"test": "jasmine"
},
"author": "",
"license": "ISC",
"dependencies": {
"lodash.clone": "^4.5.0",
"lodash.create": "^4.2.0",
"lodash.isequal": "^4.5.0",
"object-hash": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/node": "^7.23.9",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-object-rest-spread": "^7.24.1",
"@babel/preset-env": "7.4.5",
"@babel/register": "^7.4.4",
"cross-env": "^7.0.3",
"jasmine": "^3.4.0"
}
}