-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.91 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.91 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@cognitive-fab/sam-pattern",
"version": "1.6.1",
"description": "SAM Pattern library",
"main": "./dist/SAM.js",
"scripts": {
"build": "rollup --bundleConfigAsCjs -c rollup.config.js",
"test": "node node_modules/mocha/bin/mocha.js --require @babel/register --spec \"test/**/*.test.js\"",
"minify": "minify ./dist/SAM.js -d dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6",
"@babel/plugin-transform-optional-chaining": "^7.28.6",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"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": "^11.7.5",
"nodemon": "^3.1.14",
"rollup": "^4.60.0",
"uglify-es": "^3.3.9"
},
"unpkg": "dist/SAM.js"
}