-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 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
44
45
46
47
{
"name": "asdata",
"version": "1.0.7",
"description": "Extended ActionScript3 ByteArray API for JavaScript",
"main": "dist/asdata.min.js",
"types": "dist/src/index.d.ts",
"unpkg": "dist/asdata.min.js",
"scripts": {
"test": "mocha --reporter spec --require ts-node/register tests/**/*.test.ts",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"prepublish": "yarn lint:fix && yarn test && yarn dev && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yovanoc/asdata.git"
},
"keywords": [
"typescript",
"library",
"bytearray",
"actionscript"
],
"author": "Christopher Yovanovitch <yovano_c@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yovanoc/asdata/issues"
},
"homepage": "https://github.com/yovanoc/asdata#readme",
"devDependencies": {
"@types/chai": "^4.0.8",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"ts-loader": "^4.4.1",
"ts-node": "^6.1.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-merge": "^4.1.2"
}
}