-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.24 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
41
42
43
44
45
46
{
"name": "bite-log",
"author": "Lisa Huang-North <[email protected]> (http://lambdalisa.com)",
"version": "0.0.0-development",
"description": "A bite size colorful and tagged logger for Node and browsers",
"main": "dist/commonjs/src/index.js",
"module": "dist/modules/src/index.js",
"types": "dist/types/src/index.d.ts",
"ember-addon": {
"main": "ember-addon.js"
},
"keywords": [
"ember-addon"
],
"scripts": {
"problems": "node ./scripts/problems.js",
"preversion": "npm run test",
"prepare": "ember build -prod",
"build": "ember build -prod",
"build-tests": "ember build",
"pretest": "npm run problems",
"test": "ember test",
"tdd": "ember test --server",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"license": "MIT",
"devDependencies": {
"@types/qunit": "^2.0.31",
"ember-cli": "^3.1.4",
"libkit": "0.7.0",
"qunit": "^2.4.1",
"shelljs": "^0.8.2",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"travis-deploy-once": "^5.0.1",
"semantic-release": "^17.2.3"
},
"dependencies": {
"ts-std": "^0.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lisaychuang/bite-log.git"
}
}