-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "one-typescript",
"version": "0.0.10",
"description": "Porting of One package to typescript",
"main": "lib/index.js",
"typings": "lib/index",
"files": [
"lib/"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"clean": "rimraf lib dist coverage",
"build:js": "webpack --config webpack.config.js",
"build:js:min": "webpack --config webpack.config.production.js",
"build:lib": "tsc --rootDir src --outDir lib",
"build": "npm run build:lib && npm run build:js && npm run build:js:min",
"tt": "webpack --config webpack.st.config.js",
"prepub": "npm run clean && npm run build"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleDirectories": [
"node_modules"
],
"testEnvironment": "node"
},
"author": "Dan Maier",
"license": "MIT",
"devDependencies": {
"@types/jest": "^20.0.2",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^4.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4",
"path": "^0.12.7",
"rimraf": "^2.5.4",
"ts-jest": "^20.0.6",
"ts-loader": "^1.2.2",
"typescript": "^2.3.4",
"typescript-eslint-parser": "^3.0.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {}
}