-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "erlang-processes",
"version": "2.2.2",
"description": "Erlang style processes in JavaScript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ava test",
"dev": "NODE_ENV=development webpack-dev-server --open --content-base / --config webpack.dev.config.js --mode development",
"demo:build": "NODE_ENV=production webpack --config webpack.prod.config.js --mode production",
"docs:build": "typedoc --excludeExternals --mode file --out docs && npm run demo:build"
},
"keywords": [
"erlang",
"process"
],
"repository": {
"type": "git",
"url": "https://github.com/elixirscript/processes.git"
},
"author": "Bryan Joseph <bryanjos@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.1",
"babel-loader": "^8.0.0",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"raw-loader": "^2.0.0",
"rollup": "^1.0.1",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-node-resolve": "^5.0.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.0",
"ts-node": "^8.1.0",
"typedoc": "^0.14.0",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"erlang-types": "^1.1.3"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}