-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "@acryl/data-service-client-js",
"version": "4.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"build:browser:dev": "tsc && browserify ./dist/index.js -o ./dist/umd.js",
"build:browser": "browserify ./dist/index.js -o ./dist/umd.js -u @acryl/data-entities -u @acryl/bignumber",
"build:all": "rimraf ./dist/* && npm run build && npm run build:browser",
"test": "jest",
"prepare": "npm run build:all && npm test"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@acryl/bignumber": "^0.0.3",
"@acryl/data-entities": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "12.7.4",
"@types/node-fetch": "^1.6.9",
"browserify": "^16.2.2",
"jest": "^24.9.0",
"node-fetch": "^2.1.2",
"parse-json-bignumber": "^0.0.2",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.5",
"typescript": "^3.4.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
".history"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost/"
}
}