-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
50
51
52
53
54
55
56
57
{
"name": "sam-pattern",
"version": "1.5.10",
"description": "SAM Pattern library",
"main": "./dist/SAM.js",
"scripts": {
"build": "rollup index.js -f umd --name \"tp\" --file dist/SAM.js",
"test": "./node_modules/.bin/mocha --require @babel/register",
"minify": "minify ./dist/SAM.js -d dist"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jdubray/sam-lib.git"
},
"keywords": [
"SAM",
"Pattern",
"State",
"Management"
],
"author": "Jean-Jacques Dubray",
"license": "ISC",
"bugs": {
"url": "https://github.com/jdubray/sam-lib/issues"
},
"homepage": "https://github.com/jdubray/sam-lib#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"babel-eslint": "^10.0.2",
"babel-minify": "^0.5.1",
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"rollup": "^1.16.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.0",
"uglify-es": "^3.3.9"
},
"unpkg": "dist/SAM.js"
}