-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.57 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "source-toolchain",
"version": "2.0.0",
"main": "es5/main.js",
"typings": "definitions/main.d.ts",
"description": "Toolchain for the Source Language",
"repository": "https://github.com/evansb/source-toolchain",
"license": "MIT",
"author": {
"name": "Evan Sebastian",
"email": "evanlhoini@gmail.com"
},
"scripts": {
"start": "cd playground && npm run start",
"build": "npm run compile && cd playground && npm run build",
"clean": "rimraf definitions es6 es5",
"precommit": "lint-staged",
"prepush": "npm run lint",
"lint": "tslint -c tslint.json --type-check --project tsconfig.json ./src/**/*.ts",
"compile": "rimraf definitions && tsc -p tsconfig.compile.json --rootDir src --outDir es6 --declarationDir definitions && babel es6 --out-dir es5",
"dev": "jest --verbose --watch",
"test": "jest --no-cache --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"deploy": "now --public",
"prepublishOnly": "npm run lint",
"postinstall": "cd playground && npm install"
},
"dependencies": {
"@types/acorn": "^4.0.2",
"@types/common-tags": "^1.2.5",
"@types/estree": "^0.0.35",
"@types/invariant": "^2.2.28",
"acorn": "^5.0.3",
"astring": "^1.0.2",
"babel-runtime": "^6.23.0",
"common-tags": "^1.4.0",
"eventemitter2": "^4.1.0",
"immutable": "^3.8.1",
"invariant": "^2.2.2"
},
"devDependencies": {
"@types/debug": "^0.0.29",
"@types/jest": "^19.2.3",
"@types/node": "^7.0.22",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"coveralls": "^2.13.1",
"debug": "^2.6.8",
"husky": "^0.13.4",
"jest": "^20.0.3",
"lint-staged": "^3.6.1",
"now": "^7.1.0",
"prettier": "^1.4.4",
"prop-types": "^15.5.10",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.4",
"tslint": "^5.4.3",
"typescript": "^2.5.0-dev.20170619"
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --semi --single-quote --write",
"git add"
],
"*.ts": [
"prettier --parser typescript --no-semi --single-quote --write",
"git add"
]
}
},
"jest": {
"mapCoverage": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/__tests__/fixtures/.*\\.(ts|tsx|js)$"
]
},
"false": {}
}