This repository has been archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
114 lines (114 loc) · 3.99 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "polymathjs",
"author": "Polymath",
"version": "0.2.0",
"description": "Tools for interacting with the Polymath platform",
"main": "index.js",
"scripts": {
"babel:src": "babel --source-maps --copy-files --out-dir lib/src src --ignore anchor.js,site.js,split.js",
"babel:test": "babel --source-maps --copy-files --out-dir lib/test test",
"babel:watchsrc": "babel --watch --source-maps --copy-files --out-dir lib/src src --ignore anchor.js,site.js,split.js",
"babel:watchtest": "babel --watch --source-maps --copy-files --out-dir lib/test test",
"build": "webpack && run-s babel:src babel:test",
"build-poly-docs": "run-s prepack documentation-copy-babel-ignored documentation-build",
"clean": "rm -rf ./lib ./build",
"copy-artifacts": "node lib/src/cli copyartifacts",
"compile": "run-s truffle:compile copy-artifacts",
"documentation-build": "documentation build src/contract_wrappers/ -f html -o docs --config documentation.yml --theme lib/src/theme_polymath ",
"documentation-copy-babel-ignored": "cp src/theme_polymath/assets/anchor.js src/theme_polymath/assets/site.js src/theme_polymath/assets/split.js lib/src/theme_polymath/assets",
"documentation-serve": "documentation serve --watch src/contract_wrappers --config documentation.yml --theme lib/src/theme_polymath",
"lint": "eslint --fix src test",
"migrate-testrpc": "truffle migrate --network=testrpc",
"prepack": "npm run build",
"serve-poly-docs": "run-s documentation-copy-babel-ignored documentation-serve",
"start": "run-p babel:watchsrc babel:watchtest",
"test": "mocha lib/test/**/*_test.js --timeout 20000 --bail --exit",
"testrpc": "ganache-cli -p 8545 --networkId 50 --gasLimit 15000000 -m \"${npm_package_config_mnemonic}\"",
"truffle:compile": "truffle compile",
"watch-lint": "esw -w --fix src test",
"ci": "scripts/test.sh",
"contracts": "scripts/updateContracts.sh"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && flow"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PolymathNetwork/polymath.js.git"
},
"keywords": [
"polymath"
],
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/PolymathNetwork/polymath.js/issues"
},
"homepage": "https://github.com/PolymathNetwork/polymath.js#readme",
"config": {
"mnemonic": "age drama cover door helmet mechanic wine lesson vote inflict will keep"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"truffle-contract": "3.0.1",
"uuid": "3.1.0",
"web3": "0.20.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.1.2",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"bignumber.js": "5.0.0",
"chai": "4.1.2",
"doctrine-temporary-fork": "2.0.0-alpha-allowarrayindex",
"documentation": "5.3.5",
"eslint": "4.11.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-config-prettier": "2.8.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-prettier": "2.4.0",
"eslint-watch": "3.1.3",
"flow-bin": "0.63.1",
"fs-extra": "5.0.0",
"ganache-cli": "6.0.3",
"github-slugger": "1.2.0",
"globals-docs": "2.4.0",
"highlight.js": "9.12.0",
"husky": "0.14.3",
"json-loader": "0.5.7",
"lint-staged": "5.0.0",
"mocha": "4.1.0",
"npm-run-all": "4.1.2",
"prettier": "1.8.2",
"remark": "8.0.0",
"remark-html": "7.0.0",
"truffle": "4.0.4",
"uglifyjs-webpack-plugin": "1.1.5",
"unist-builder": "1.0.2",
"vinyl": "2.1.0",
"vinyl-fs": "3.0.1",
"webpack": "3.10.0",
"webpack-node-externals": "1.6.0",
"yargs": "10.0.3"
},
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
}
}