-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tigerui-core-js",
"version": "0.0.1",
"description": "A toolkit for reactive (event/stream) based UI development on the browser",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"jam": {
"main": "./dist/main.browser.js"
},
"browser": {
"dist/main.js": "./dist/main.browser.js"
},
"scripts": {
"prebuild": "npm install",
"build": "webpack || echo not ok",
"test": "jest",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage --no-cache",
"coverage:watch": "npm run coverage -- --watch",
"prerelease": "npm run build && npm test",
"release": "standard-version && npm pack"
},
"keywords": [
"browser",
"tigerui",
"property",
"reactive"
],
"author": "Mike Baum",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.36",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.41",
"@types/jest": "^0.9.31",
"@types/node": "^6.0.38",
"awesome-typescript-loader": "^2.2.1",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"browserify": "^13.1.0",
"delete-empty": "^0.1.3",
"dts-bundle": "^0.5.0",
"jest": "^15.1.1",
"standard-version": "^2.4.0",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "2.0.0",
"typescript-babel-jest": "^0.1.2",
"webpack": "2.1.0-beta.22",
"webpack-node-externals": "^1.4.3"
},
"dependencies": {
"lodash": "^4.16.1",
"rxjs": "^5.0.0-beta.12"
},
"jest": {
"scriptPreprocessor": "node_modules/typescript-babel-jest",
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}