This repository was archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "mobx-changeset",
"version": "1.0.0",
"description": "",
"main": "dist/index.main.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/empaticoorg/mobx-changeset",
"author": "andela-gogbara <godwin.onisofien@andela.com>",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn compile && rollup -c && cp lib/*.d.ts dist",
"compile": "yarn tscqqqq",
"problems": "yarn lint && yarn tsc --noEmit",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"clean": "rm -rf dist",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^22.0.0",
"@types/lodash-es": "^4.17.0",
"jest": "^21.2.1",
"rollup": "^0.51.8",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-node-resolve": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"dependencies": {
"lodash-es": "^4.17.4",
"mobx": "^3.3.2"
},
"jest": {
"transform": {
"^.+\\.(j|t)s?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es/.*)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}