-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "oncha",
"description": "ऊंचा Oncha :: A modular exalted javascript monadic library & functional fun.",
"version": "0.0.0",
"private": true,
"main": "index.js",
"author": "Simon Deshaies",
"license": "MIT",
"contributors": [
"Simon Deshaies",
"Ysael Pepin",
"Guillaume Martin",
"Olivier Leduc",
"Olivier Melancon"
],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "yarn format && yarn build && yarn test:specs",
"test:specs": "./node_modules/.bin/mocha --recursive --compilers js:babel-core/register specs/**",
"test:watch": "./node_modules/.bin/mocha --recursive -w --compilers js:babel-core/register specs/**",
"build": "./node_modules/.bin/webpack",
"build:watch": "./node_modules/.bin/webpack --watch",
"format": "./node_modules/.bin/nextformat"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"mocha": "^3.2.0",
"next-format": "^0.0.8",
"webpack": "2.2.0-rc.5"
}
}