-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 804 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 804 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": "@dera-/akashic-analytics",
"version": "1.0.0",
"description": "GAにコンテンツ利用状況のデータを送るためのライブラリ",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run clean && npm run build",
"clean": "shx rm -rf ./lib",
"build": "tsc -p ./",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "npm run build && npm run test:jasmine && npm run lint",
"test:jasmine": "jasmine ./spec/**/*[sS]pec.js"
},
"author": "dera-",
"license": "MIT",
"files": [
"lib",
"package.json"
],
"dependencies": {
"@akashic/akashic-engine": "~2.3.5"
},
"devDependencies": {
"jasmine": "~3.1.0",
"shx": "~0.2.2",
"tslint": "~5.10.0",
"typescript": "~2.8.3"
}
}