-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 970 Bytes
/
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
{
"name": "rosmaro",
"license": "MIT",
"description": "Visual automata-based programming in functional JavaScript.",
"keywords": [
"fsm",
"visual programming",
"finite state machine",
"automata-based programming",
"functional programming"
],
"version": "0.8.4",
"author": "Łukasz Makuch <[email protected]> (http://lukaszmakuch.pl)",
"dependencies": {
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.24.1",
"jest": "^23.6.0"
},
"jest": {
"testRegex": "((\\.|/)(test|spec))\\.jsx?$"
},
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist && babel src -d dist --ignore **/*.test.js,src/testUtils.js",
"test": "./node_modules/.bin/jest --watch",
"prepublish": "npm run build"
}
}