-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "possum",
"version": "1.0.4",
"description": "I am able. A State Machine.",
"main": "./dist/possum.js",
"babel": {
"presets": [
"es2015"
]
},
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf dist/* && mkdir -p dist || true && rimraf ./example/possum.js",
"example": "npm run clean && npm run build && browserify --debug --outfile ./examples/possum.js --require ./dist/possum.js:possum && serve examples",
"test": "babel-tape-runner ./test/**/*-test.js | tap-spec",
"build": "npm run clean && babel src --out-dir dist && npm run uglify",
"uglify": "uglifyjs dist/possum.js -m -c warnings=false -o dist/possum.min.js",
"docs": "mr-doc --source src --output docs --name possum",
"gh-pages": "npm run docs && gh-pages -d docs",
"prepublish": "npm run build && npm test && npm run gh-pages",
"serve": "serve",
"ci": "npm run build && npm test",
"browser": "browserify --debug ./test/*.js | tap-closer | smokestack | tap-spec"
},
"keywords": [
"hierarchical",
"state",
"machine",
"marsupial",
"fsm",
"finite"
],
"author": "Mike Nichols <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mnichols/possum"
},
"license": "MIT",
"browserify": {
"transform": [
[
"babelify"
]
]
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-tape-runner": "^2.0.1",
"babelify": "^7.2.0",
"blue-tape": "^0.2.0",
"bluebird": "^3.3.5",
"browserify": "^13.0.0",
"documentation": "^4.0.0-beta2",
"eventemitter2": "^1.0.1",
"eventemitter3": "^1.2.0",
"gh-pages": "^0.11.0",
"glob": "^7.0.3",
"mkdirp": "^0.5.0",
"mr-doc": "^3.2.1",
"rimraf": "^2.5.2",
"serve": "^1.4.0",
"smokestack": "^3.4.1",
"tap-closer": "^1.0.0",
"tap-spec": "^4.1.1",
"uglifyjs": "^2.4.10",
"zuul": "^3.3.1"
},
"dependencies": {
"cuid": "^1.2.4",
"stampit": "^2.1.0"
},
"npmName": "possum",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"possum.js",
"possum.min.js"
]
}
]
}