-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "tokenism",
"version": "0.1.0",
"description": "A very strange tool for describing tokens, how to use it's only to you!",
"author": "RubaXa <ibn@rubaxa.org>",
"license": "MIT",
"repository": "",
"main": "index.js",
"scripts": {
"test": "jest",
"ts-build": "tsc",
"ts-build-clean": "rimraf ./*.{d.ts,js} && rimraf ./{src,__jest__}/**/*.{d.ts,js}",
"prepublishOnly": "npm run test && npm run ts-build",
"postpublish": "npm run ts-build-clean"
},
"files": [
"*.js",
"*.d.ts",
"src/*/*.js",
"src/*/*.d.ts"
],
"devDependencies": {
"@types/jest": "^24.0.23",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.tests\\.ts$",
"transformIgnorePatterns": [],
"setupFilesAfterEnv": [
"<rootDir>/__jest__/extensions.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}