forked from NodleCode/Nodle-I-Ching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.96 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
{
"name": "iching-js",
"version": "1.0.0",
"description": "Javascript IChing code encoding/decoding library",
"keywords": [
"iching",
"iching-code",
"typescript",
"reader",
"writer",
"decoder",
"encoder",
"scanner",
"generator"
],
"main": "./lib/umd/index.min.js",
"module": "./lib/esm5/index.js",
"typings": "./lib/esm5/index.d.ts",
"authors": [
{
"name": "Abdelrahman Ramadan",
"email": "abdelrahman0xff@gmail.com"
},
{
"name": "Osama Hatem",
"email": "osamahatem94@gmail.com"
}
],
"scripts": {
"lint": "tslint src/**/*.ts",
"prebuild": "rimraf lib",
"test": "./node_modules/.bin/jest",
"build": "npm run lint && tsc && webpack-cli"
},
"jest": {
"testRegex": ".*test.ts",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"repository": {
"type": "git"
},
"author": "",
"license": "GPLv3",
"homepage": "",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.1",
"@types/jpeg-js": "^0.3.0",
"@types/node": "^10.9.4",
"@types/seedrandom": "^2.4.27",
"@types/sharp": "^0.17.10",
"@types/upng-js": "^2.1.0",
"awesome-typescript-loader": "^5.2.0",
"eslint": "^5.5.0",
"fs-extra": "^7.0.0",
"get-image-data": "^3.0.1",
"jest": "^23.5.0",
"jpeg-js": "^0.3.4",
"rimraf": "^2.6.2",
"seedrandom": "^2.4.4",
"sharp": "^0.20.7",
"source-map": "^0.7.3",
"tapable": "^1.0.0",
"ts-jest": "^23.1.4",
"ts-lint": "^4.5.1",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"uglify-js": "^3.4.9",
"uglifyjs-webpack-plugin": "^1.3.0",
"upng-js": "^2.1.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-config-utils": "^2.3.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"gpl-3.0": "^1.0.1"
}
}