-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
Β·114 lines (114 loc) Β· 2.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "eventline",
"version": "0.3.3",
"description": "A declrative micro-framework for routing events for chatbots and applications",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"browser": "build/browser/index.js",
"repository": "https://github.com/surebot/Eventline",
"author": "James Campell",
"license": "ISC",
"scripts": {
"info": "npm-scripts-info",
"build": "tsc -p tsconfig.json",
"test": "jest",
"example": "npm run build && node example/index.js",
"release": "tsc -p tsconfig.json && npm publish"
},
"scripts-info": {
"info": "Display information about the scripts",
"build": "(Trash and re)build the library",
"test": "Lint, build, and test the library",
"example": "Builds the library and runs the example",
"release": "Builds the library and publishes it"
},
"engines": {
"node": ">=4.5"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"@types/lodash": "^4.14.68",
"@types/node": "^8.0.4",
"@types/xregexp": "^3.0.28",
"ava": "^0.20.0",
"browserify": "^14.1.0",
"codecov": "^2.2.0",
"concurrently": "^3.4.0",
"cpx": "^1.5.0",
"gh-pages": "^1.0.0",
"hash.js": "^1.0.3",
"jest": "^20.0.4",
"mkdirp": "^0.5.1",
"npm-scripts-info": "^0.3.6",
"nyc": "^11.0.3",
"opn-cli": "^3.1.0",
"rollup": "^0.43.0",
"rollup-plugin-alias": "^1.2.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^4.0.0",
"sleep-ms": "^2.0.1",
"sorcery": "^0.10.0",
"standard-version": "^4.0.0",
"trash-cli": "^1.4.0",
"ts-jest": "^20.0.6",
"ts-loader": "^2.2.2",
"tslint": "^5.4.3",
"tslint-config-standard": "^6.0.1",
"tslint-loader": "^3.5.3",
"typedoc": "^0.7.1",
"typescript": "^2.3.4",
"webpack": "^3.0.0"
},
"keywords": [
"async",
"ava",
"await",
"boilerplate",
"conventional-changelog",
"ES6",
"ES7",
"library",
"javascript-modules",
"node",
"nyc",
"rollup",
"starter",
"template",
"tree-shaking",
"tslint",
"typedoc",
"typescript",
"typings"
],
"nyc": {
"exclude": [
"**/*.spec.js",
"build/browser/**"
]
},
"ava": {
"source": [
"test/**/*.js",
"build/**/*.js",
"!build/**/*.spec.js"
]
},
"dependencies": {
"lodash": "^4.17.4",
"tslib": "^1.6.0",
"xregexp": "^3.2.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}