-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "telos-lwcp",
"version": "0.1.3",
"main": "dist/lwcp.js",
"types": "dist/lwcp.d.ts",
"scripts": {
"prepublishOnly": "npm run build && npm test",
"postinstall": "npm run build",
"build": "tsc",
"test": "karma start",
"start": "npm run build && npm test",
"clean": "npm cache clear && rimraf -- dist"
},
"license": "ISC",
"author": "Jeff Bencin",
"repository": {
"type": "git",
"url": "https://github.com/jbencin/lwcp-js.git"
},
"devDependencies": {
"@types/jasmine": "^2.5.53",
"jasmine": "^2.6.0",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"rimraf": "^2.6.1",
"tslint": "^5.5.0"
},
"dependencies": {
"typescript": "^2.4.1"
}
}