-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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": "phoenix-functions",
"version": "0.9.81",
"description": "equations for phoenix command",
"main": "dist/phoenix-functions.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"prepublishOnly": "npm run build",
"watch": "webpack --watch",
"webpack": "webpack",
"start": "webpack --watch & webpack-dev-server --open-page 'webpack-dev-server/dist'",
"test": "mocha --require babel-core/register --require ./test/config.js --recursive",
"test:watch": "npm test -- --watch",
"document": "documentation build src/** -f html -o docs --shallow"
},
"author": "Matthew Butler",
"license": "MIT",
"repository": "mbutler/phoenix-functions",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"documentation": "^14.0.0",
"mocha": "^10.1.0",
"webpack": "^4.28.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
}
}
]
]
},
"dependencies": {
"lodash": "^4.17.19"
}
}