-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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": "micromachinejs",
"version": "1.0.2",
"description": "Small Finite State Machine implementation in JavaScript.",
"main": "dist/micromachine.js",
"scripts": {
"build": "webpack --config webpack.config.babel.js && npm run docs",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill",
"test:watch": "mocha --compilers js:babel-core/register --watch --require babel-polyfill",
"test:coverage": "nyc npm test && nyc report --reporter=text-lcov",
"coveralls": "npm run test:coverage | coveralls",
"lint": "eslint --ext .jsx,.js src test",
"lint:fix": "npm run lint -- --fix",
"docs": "docco src/micromachine.js"
},
"author": "Ahmed Omran",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"compression-webpack-plugin": "^1.0.0",
"coveralls": "^2.13.1",
"docco": "^0.7.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.0.3",
"uglify-js": "^3.0.25",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.3.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/aomran/micromachinejs.git"
},
"bugs": {
"url": "https://github.com/aomran/micromachinejs/issues"
},
"homepage": "https://github.com/aomran/micromachinejs"
}