-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.25 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.25 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
{
"name": "@barteh/machinize",
"version": "1.0.39",
"description": "a javascript library implements finite-state machine for application developement purpose ",
"main": "index.js",
"scripts": {
"test": " npm run build && node ./lib/test",
"build": "npm run lint && babel src -d lib && babel index.d.js -o index.js",
"up": "npm publish --access public --scope=barteh",
"lint": "./node_modules/.bin/eslint src/**/*.js && echo \"eslint code is ok\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/barteh/machinize.git"
},
"keywords": [
"machinize",
"fsm",
"finite-state-machine",
"javascript",
"barteh",
"برته",
"Observable-fsm",
"auto-condition-transition-fsm"
],
"author": "Ahad Rafat Talebi",
"license": "MIT",
"bugs": {
"url": "https://github.com/barteh/machinize/issues"
},
"dependencies": {
"npm": "^6.13.1",
"rxjs": "^5.5.10"
},
"homepage": "https://github.com/barteh/machinize/wiki",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"babel-eslint": "^8.2.6",
"eslint": "^5.2.0",
"eslint-plugin-react": "^7.10.0"
}
}