forked from altjs/utils
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.72 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
{
"name": "alt-utils",
"version": "2.0.0",
"description": "A collection of utils that work with alt.js",
"main": "lib",
"jsnext:main": "src",
"scripts": {
"build": "yarn run clean && yarn run transpile",
"clean": "rimraf lib",
"coverage": "yarn run transpile-cover && babel-node node_modules/mocha/bin/_mocha -- -u exports -R tap test",
"lint": "eslint src components",
"pretest": "yarn run clean && yarn run transpile",
"test": "babel-node node_modules/.bin/_mocha -u exports -R nyan test",
"transpile": "babel src --out-dir lib",
"transpile-cover": "babel src --out-dir lib --plugins @babel/plugin-external-helpers"
},
"author": "Josh Perez <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.7",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-function-bind": "^7.16.7",
"@babel/plugin-transform-classes": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"alt": "git+https://github.com/bitshares/alt.git",
"alt-container": "https://github.com/bitshares/alt-container.git",
"babel-istanbul": "^0.12.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"chai": "^4.3.4",
"immutable": "^4.0.0",
"iso": "^5.2.0",
"jsdom": "^19.0.0",
"mocha": "^9.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sinon": "^12.0.1"
},
"dependencies": {
"prop-types": "^15.8.0"
}
}